From ee830621dda92e9e9fc9c8f49f32f28da45cb0ff Mon Sep 17 00:00:00 2001 From: Bert Verhelst Date: Fri, 1 Oct 2021 15:07:05 +0200 Subject: [PATCH] fix(login): fix the same padding issues for the login screen --- src/components/Login.vue | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/src/components/Login.vue b/src/components/Login.vue index ca36fdb9..8a20fbdb 100644 --- a/src/components/Login.vue +++ b/src/components/Login.vue @@ -52,7 +52,7 @@ export default { token: "", res: null, tokenRequired: false, - } + }; }, methods: { submit() { @@ -60,21 +60,20 @@ export default { this.$root.login(this.username, this.password, this.token, (res) => { this.processing = false; - console.log(res) + console.log(res); if (res.tokenRequired) { this.tokenRequired = true; } else { this.res = res; } - }) + }); }, }, -} +}; -