From 2dbd5bb36e79ea6d95cc89f1fcdace74062daa3e Mon Sep 17 00:00:00 2001 From: Dat Date: Mon, 3 Feb 2025 00:05:27 +0100 Subject: [PATCH] fix: fix lint errors --- src/components/Cards/Login.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/Cards/Login.vue b/src/components/Cards/Login.vue index fbb58409..76ea3489 100644 --- a/src/components/Cards/Login.vue +++ b/src/components/Cards/Login.vue @@ -87,13 +87,13 @@ export default { .catch(err => { console.log(err.response) - this.errorMessage = "Incorrect username or password. Please try again." + this.errorMessage = 'Incorrect username or password. Please try again.' - this.password = "" + this.password = '' this.$nextTick(() => { - this.$refs.passwordField.$el.querySelector("input").focus(); - }); + this.$refs.passwordField.$el.querySelector('input').focus() + }) this.loggingIn = false })