From aa64b2b4cd917493e72de976eacc845446d8647c Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Wed, 21 Aug 2019 14:57:38 +0800 Subject: [PATCH] [-] Remove disable loading because it is useless --- src/components/login/login.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/components/login/login.ts b/src/components/login/login.ts index 7d48821..114fa0a 100644 --- a/src/components/login/login.ts +++ b/src/components/login/login.ts @@ -31,9 +31,6 @@ export default class Login extends Vue // Get response body text res.text().then(text => { - // Disable loading - this.loading = false; - // Call custom event with courses info this.$emit('login:courses', JSON.parse(text)); })