diff options
Diffstat (limited to 'src/components/registration')
| -rw-r--r-- | src/components/registration/registration.vue | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/registration/registration.vue b/src/components/registration/registration.vue index 8cc4ba56..e0fa214a 100644 --- a/src/components/registration/registration.vue +++ b/src/components/registration/registration.vue @@ -215,17 +215,22 @@ </div> </div> + <!-- eslint-disable vue/no-v-html --> <div class="terms-of-service" v-html="termsOfService" /> + <!-- eslint-enable vue/no-v-html --> </div> <div v-if="serverValidationErrors.length" class="form-group" > <div class="alert error"> - <span v-for="error in serverValidationErrors">{{ error }}</span> + <span + v-for="error in serverValidationErrors" + :key="error" + >{{ error }}</span> </div> </div> </form> |
