-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Labels
Milestone
Description
Describe the bug
Action group on index page with inline display throws twig exception:
Variable "group" does not exist in @EasyAdmin/crud/action_group.html.twig at line 3.
To Reproduce
- Add an action group the the index page.
- Display the actions inline.
(OPTIONAL) Additional context
Index page with inline actions loads the action_group.html.twig
template directly without converting the twig variable action
to group
.
EasyAdminBundle/templates/crud/index.html.twig
Lines 196 to 198 in e9ae353
{% for action in entity.actions %} | |
{{ include(action.templatePath, { action: action, entity: entity, isIncludedInDropdown: ea.crud.showEntityActionsAsDropdown }, with_context = false) }} | |
{% endfor %} |