Skip to content

Commit

Permalink
feat(frontend): allow html in form descriptions (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianSDV authored May 22, 2024
1 parent ccdd452 commit 1251164
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions views/js/backend/admin/src/components/pdk/PsFormGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

<small
v-if="element.props?.description && has(element.props.description)"
class="form-text text-muted">
{{ translate(element.props.description) }}
class="form-text text-muted"
v-html="translate(element.props.description)">
</small>
<div
Expand Down

0 comments on commit 1251164

Please sign in to comment.