aboutsummaryrefslogtreecommitdiff
path: root/src/components/registration
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2019-07-07 00:54:17 +0300
committerHenry Jameson <me@hjkos.com>2019-07-07 00:54:17 +0300
commit020c6d1bcfaf67ccb9ecdab13a39a1ddea868bb6 (patch)
tree2c4d29afd542e288ad1907609a1b12c7c0719e31 /src/components/registration
parent1ec4caa0bbea18854a8a7bccaa7e2a0ea8bdf79e (diff)
all the manual fixes
Diffstat (limited to 'src/components/registration')
-rw-r--r--src/components/registration/registration.vue7
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>