Skip to content

Commit

Permalink
Add |raw to h5 in formfields template (#1268)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasbableck authored Aug 23, 2024
1 parent 596075d commit e6bfe20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/Froxlor/form/formfields.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% if norow == false and (field.type != 'hidden' or (field.type == 'hidden' and field.display is defined and field.display is not empty)) %}
<div class="row g-0 formfield d-flex align-items-center">
{% if field.prior_infotext is defined and field.prior_infotext|length > 0 %}
<h5>{{ field.prior_infotext }}</h5>
<h5>{{ field.prior_infotext|raw }}</h5>
{% endif %}
{% if field.label is iterable %}
<label for="{{ id }}" class="col-sm-6 col-form-label pe-3">
Expand Down

0 comments on commit e6bfe20

Please sign in to comment.