mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2026-03-06 20:41:33 +01:00
Update fieldset.html.twig (#2313)
Fix `fieldset.text` not rendering when `markdown` falsy.
This commit is contained in:
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user