Skip to content

Commit

Permalink
πŸ› Don't escape nonFieldErrors as foirequest compoentn
Browse files Browse the repository at this point in the history
  • Loading branch information
pajowu committed Jan 2, 2024
1 parent 13d0663 commit 2ee1420
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions frontend/javascript/components/makerequest/request-form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,7 @@
<div class="row">
<div class="col-md-12">
<div v-if="nonFieldErrors.length > 0" class="alert alert-danger">
<p v-for="error in nonFieldErrors" :key="error">
{{ error }}
</p>
<p v-for="error in nonFieldErrors" :key="error" v-html="error" />
</div>

<div class="mb-3">
Expand Down

0 comments on commit 2ee1420

Please sign in to comment.