From 01049e67fd20b2ce69fe2df175221be40d3f5ab4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= Date: Tue, 7 May 2019 10:55:01 +0200 Subject: [PATCH] (lint) --- frontend/src/components/forms/Register.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/forms/Register.vue b/frontend/src/components/forms/Register.vue index 3542602..297c4e4 100644 --- a/frontend/src/components/forms/Register.vue +++ b/frontend/src/components/forms/Register.vue @@ -54,15 +54,15 @@ export default { showPassword: false, passwordRules: [v => !!v || 'Password is required'], - passwordConfirm: '', + passwordConfirm: '' }), computed: { passwordConfirmRules() { return [ - () => this.password === this.passwordConfirm || "Passwords must match" + () => this.password === this.passwordConfirm || 'Passwords must match' ] - }, + } }, methods: {