Closed hughbris closed 2 years ago
My buttons were not being rendered in a form (written a while ago) and it seems to be two predicates {% if form.enabled %} around buttons in forms/default/form.html.twig.
{% if form.enabled %}
forms/default/form.html.twig
This is a breaking change in b8180315, though it's easily fixed by adding enabled: true to the form. To prevent breakage, could you default this form property to true please?
enabled: true
true
@hughbris Please try above fix, thanks!
My buttons were not being rendered in a form (written a while ago) and it seems to be two predicates
{% if form.enabled %}
around buttons informs/default/form.html.twig
.This is a breaking change in b8180315, though it's easily fixed by adding
enabled: true
to the form. To prevent breakage, could you default this form property totrue
please?