Update fieldset.html.twig (#2313)

Fix `fieldset.text` not rendering when `markdown` falsy.
This commit is contained in:
Iain Gillis
2022-09-05 12:32:54 -06:00
committed by GitHub
parent 37b5f3739d
commit 8a193fa55f

View File

@@ -49,7 +49,7 @@
{% block group %}
{% if field.text %}
{{ field.markdown ? field.text|t|markdown : ('<p>' ~ field.t ~ '</p>')|raw }}
{{ field.markdown ? field.text|t|markdown : ('<p>' ~ field.text|t ~ '</p>')|raw }}
{% endif %}
{% if field.fields %}