From 3bd8d119ba88e940932eca50be406d50d73040fb Mon Sep 17 00:00:00 2001 From: Pitu Date: Wed, 24 Apr 2019 08:36:28 +0000 Subject: Refactor a bit since we globally catch API exceptions --- src/site/pages/login.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/site/pages/login.vue') diff --git a/src/site/pages/login.vue b/src/site/pages/login.vue index 6e0be3e..d4f376f 100644 --- a/src/site/pages/login.vue +++ b/src/site/pages/login.vue @@ -98,7 +98,10 @@ export default { async login() { if (this.isLoading) return; if (!this.username || !this.password) { - this.$showToast('Please fill both fields before attempting to log in.', true); + this.$store.dispatch('alert', { + text: 'Please fill both fields before attempting to log in.', + error: true + }); return; } this.isLoading = true; @@ -114,7 +117,7 @@ export default { this.redirect(); } catch (error) { - this.$onPromiseError(error); + // } finally { this.isLoading = false; } -- cgit v1.2.3