Active
Project:
Frontend Editing
Version:
2.x-dev
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
27 Nov 2025 at 14:15 UTC
Updated:
3 Dec 2025 at 09:23 UTC
Jump to comment: Most recent

mkdir my-drupal-site && \
cd my-drupal-site && \
ddev config --project-type=drupal11 --docroot=web && \
ddev start && \
ddev composer create-project "drupal/recommended-project:^11" && \
ddev composer config minimum-stability beta && \
ddev composer require drush/drush drupal/frontend_editing:^2 drupal/paragraphs_edit drupal/gin drupal/gin_toolbar drupal/devel && \
ddev drush -y site:install --account-name=admin --account-pass=admin && \
ddev drush -y en frontend_editing,devel_generate && \
ddev drush -y config:set frontend_editing.settings entity_types.node "['article']" --input-format=yaml && \
ddev drush devel-generate:content --bundles article && \
ddev drush field:delete node article --field-name field_tags && \
ddev drush -y theme:enable gin && \
ddev drush -y config:set system.theme admin gin && \
ddev launch $(ddev drush uli)
Now toggle frontend_editing on, edit node, try to save node and see side panel is not closing
| Comment | File | Size | Author |
|---|
Comments
Comment #2
norman.lolWith Claro it's no problem.
Comment #3
a.dmitriiev commentedThis might be related to #3560907: Wrong page template with gin, as Gin preprocesses the form actions. Now that the standard template is used for the form, this might help. Please check with the MR from the above mentioned issue if it works better.