Skip to content

Commit 082b286

Browse files
Merge branch '6.1' into 6.2
* 6.1: Update bootstrap_5_layout.html.twig [HttpClient] Fix seeking in not-yet-initialized requests [Serializer] Allow getting discriminated type by class name
2 parents f170742 + fcff2cd commit 082b286

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Resources/views/Form/bootstrap_5_layout.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,10 @@
218218
{%- set attr = attr|merge({class: attr_class|trim}) -%}
219219
{%- set parent_label_class = parent_label_class|default(label_attr.class|default('')) -%}
220220
{%- if 'checkbox-inline' in parent_label_class %}
221-
{% set row_class = row_class ~ ' form-check-inline' %}
221+
{%- set row_class = row_class ~ ' form-check-inline' -%}
222222
{% endif -%}
223223
{%- if 'checkbox-switch' in parent_label_class %}
224-
{% set row_class = row_class ~ ' form-switch' %}
224+
{%- set row_class = row_class ~ ' form-switch' -%}
225225
{% endif -%}
226226
{%- if row_class is not empty -%}
227227
<div class="{{ row_class }}">

0 commit comments

Comments
 (0)