From 269b80e64e845214bd3d0711cfe5330b4457c411 Mon Sep 17 00:00:00 2001 From: kolaente Date: Fri, 28 Feb 2020 22:08:16 +0100 Subject: [PATCH] Fix error container at registration page always being displayed --- src/components/user/Register.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/user/Register.vue b/src/components/user/Register.vue index 955fddb3a..3cf6ccecd 100644 --- a/src/components/user/Register.vue +++ b/src/components/user/Register.vue @@ -37,7 +37,7 @@
Loading...
-
+
{{ errorMsg }}
@@ -76,7 +76,7 @@ if (this.credentials.password2 !== this.credentials.password) { this.loading = false - this.errorMsg = 'Passwords don\'t match' + this.errorMsg = 'Passwords don\'t match.' return }