Browse Source

Fix regression with input rendering

Thomas Rabaix 11 năm trước cách đây
mục cha
commit
762f8258ac
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Resources/views/Form/silex_form_div_layout.html.twig

+ 1 - 1
Resources/views/Form/silex_form_div_layout.html.twig

@@ -7,7 +7,7 @@
         {% for child in form %}
             <li>
                 {% set form_widget_content %}
-                    form_widget(child)
+                    {{ form_widget(child) }}
                 {% endset %}
                 {{ form_label(child, null, { 'in_list_checkbox' : true, 'widget' : form_widget_content } ) }}
             </li>