Skip to content

Commit ef0934d

Browse files
committed
minor #19616 [Form] Fix wrong form name (kikminev)
This PR was submitted for the 7.1 branch but it was merged into the 6.4 branch instead. Discussion ---------- [Form] Fix wrong form name <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `7.x` for features of unreleased versions). --> Commits ------- c804e76 Fix wrong form name
2 parents 42b67d8 + c804e76 commit ef0934d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

form/dynamic_form_modification.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ field according to the current selection in the ``sport`` field:
546546
.. code-block:: html+twig
547547

548548
{# templates/meetup/create.html.twig #}
549-
{{ form_start(form, { attr: { id: 'supply_history_form' } }) }}
549+
{{ form_start(form, { attr: { id: 'sport_meetup_form' } }) }}
550550
{{ form_row(form.sport) }} {# <select id="meetup_sport" ... #}
551551
{{ form_row(form.position) }} {# <select id="meetup_position" ... #}
552552
{# ... #}

0 commit comments

Comments
 (0)