Browse Source

Fix error message display in registration page: update v-alert to use interpolation instead of v-html

pull/2426/head
GONCALOUNI 6 months ago
parent
commit
87efabd4e4
1 changed files with 3 additions and 3 deletions
  1. 6
      frontend/pages/register.vue

6
frontend/pages/register.vue

@ -16,9 +16,9 @@
v-show="showError"
v-model="showError"
type="error"
dismissible
v-html="errorMessage"
></v-alert>
dismissible>
{{ errorMessage }}
</v-alert>
<v-text-field
v-model="name"

Loading…
Cancel
Save