Skip to content

Commit

Permalink
bug #30922 [TwigBridge] fix horizontal spacing of inlined Bootstrap f…
Browse files Browse the repository at this point in the history
…orms (xabbuh)

This PR was merged into the 3.4 branch.

Discussion
----------

[TwigBridge] fix horizontal spacing of inlined Bootstrap forms

| Q             | A
| ------------- | ---
| Branch?       | 3.4
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | #25831
| License       | MIT
| Doc PR        |

Commits
-------

7113a53 fix horizontal spacing of inlined Bootstrap forms
  • Loading branch information
fabpot committed Apr 6, 2019
2 parents db93b95 + 7113a53 commit ed1b95d
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -108,10 +108,10 @@

{% block form_row -%}
<div class="form-group{% if (not compound or force_error|default(false)) and not valid %} has-error{% endif %}">
{{- form_label(form) -}}
{{- form_widget(form) -}}
{{- form_errors(form) -}}
</div>
{{- form_label(form) }} {# -#}
{{ form_widget(form) }} {# -#}
{{ form_errors(form) }} {# -#}
</div> {# -#}
{%- endblock form_row %}

{% block button_row -%}
Expand Down

0 comments on commit ed1b95d

Please sign in to comment.