You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fieldset template should have the "ecl-form-group" class set on:
oe_theme/templates/form/fieldset.html.twig
This how it is set on ecl. If left as is, the fieldset element inherits browser style.
In any case an implementation as on oe_theme/templates/form/select.html.twig is really helpful in such cases since you override only the classes and not the full template, so it's more likely not to lose anything and next updates.
{# Set default wrapper classes. #}{# This also allows overriding templates to take control of classes like width modifiers. #}
{% setwrapper_classes=wrapper_classes|default([
'ecl-select__container',
'ecl-select__container--m',
]) %}
The text was updated successfully, but these errors were encountered:
Fieldset template should have the "ecl-form-group" class set on:
oe_theme/templates/form/fieldset.html.twig
This how it is set on ecl. If left as is, the fieldset element inherits browser style.
In any case an implementation as on
oe_theme/templates/form/select.html.twig
is really helpful in such cases since you override only the classes and not the full template, so it's more likely not to lose anything and next updates.The text was updated successfully, but these errors were encountered: