Skip to content

Commit 1fa6aab

Browse files
committed
minor #6645 Fix bootstrap class name help-block (foaly-nr1)
This PR was merged into the 2.7 branch. Discussion ---------- Fix bootstrap class name help-block I checked the [bootstrap documentation](http://getbootstrap.com/css/#forms-example) as well as the bootstrap source code, there is no such class as `help`. Commits ------- af5a5be Fix bootstrap class name help-block
2 parents f77546e + af5a5be commit 1fa6aab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cookbook/form/form_customization.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1055,7 +1055,7 @@ form, modify the ``use`` tag and add the following:
10551055
{{ block('base_form_widget_simple') }}
10561056

10571057
{% if help is defined %}
1058-
<span class="help">{{ help }}</span>
1058+
<span class="help-block">{{ help }}</span>
10591059
{% endif %}
10601060
{% endblock %}
10611061

@@ -1070,7 +1070,7 @@ the following:
10701070
{{ parent() }}
10711071

10721072
{% if help is defined %}
1073-
<span class="help">{{ help }}</span>
1073+
<span class="help-block">{{ help }}</span>
10741074
{% endif %}
10751075
{% endblock %}
10761076

0 commit comments

Comments
 (0)