Add spaces to avoid errors on concatenation when used with spaceless filter

This commit is contained in:
Molkobain
2021-05-06 12:34:46 +02:00
parent 25145a68af
commit dc36b4648d

View File

@@ -3,8 +3,8 @@
{% extends "base/components/input/layout.html.twig" %}
{% block iboInput %}
<select id="{{ oUIBlock.GetId() }}" name="{{ oUIBlock.GetName() }}"
{% if oUIBlock.GetSubmitOnChange() %}onChange="this.form.submit();"{% endif %}
{% if oUIBlock.IsMultiple() %}multiple{% endif %}
{% if oUIBlock.GetSubmitOnChange() %} onChange="this.form.submit();" {% endif %}
{% if oUIBlock.IsMultiple() %} multiple {% endif %}
class="{% if oUIBlock.IsHidden() %}ibo-is-hidden{% endif %}"
>
{% for oSubBlock in oUIBlock.GetSubBlocks() %}