Compare commits

...

2 commits

Author SHA1 Message Date
005dddcea2
Merge branch 'develop' 2026-02-21 23:03:30 +01:00
7fbbad9909
fix(crud/navigation_setting): fix form action 2026-02-21 23:03:20 +01:00
2 changed files with 2 additions and 1 deletions

View file

@ -6,6 +6,7 @@
### Fixed ### Fixed
* fix(crud/index): fix row attribute value render * fix(crud/index): fix row attribute value render
* fix(crud/navigation_setting): fix form action
## [v1.27.0] - 2025-12-22 ## [v1.27.0] - 2025-12-22
### Fixed ### Fixed

View file

@ -13,7 +13,7 @@
</button> </button>
</div> </div>
<div class="modal-body"> <div class="modal-body">
<form action="{{ path('admin_setting_edit', {entity: entity.id, redirectTo: redirectTo}) }}" id="form-entity-edit" method="POST"> <form action="{{ path('admin_navigation_setting_edit', {entity: entity.id, redirectTo: redirectTo}) }}" id="form-entity-edit" method="POST">
{{ include('@Core/setting/navigation_setting_admin/_form.html.twig') }} {{ include('@Core/setting/navigation_setting_admin/_form.html.twig') }}
</form> </form>
</div> </div>