From f034349659b94df5cdd108229934257e8620a8e4 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 15 Aug 2021 13:17:10 +0100 Subject: [PATCH] :bug: Re: #127 - Fixes translation not loading --- src/views/Login.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/Login.vue b/src/views/Login.vue index 22a6673e..1b8e147b 100644 --- a/src/views/Login.vue +++ b/src/views/Login.vue @@ -53,7 +53,7 @@ export default { password: '', message: '', status: 'waiting', // wating, error, success - timeout: { label: this.$t('login.remember-me-never'), time: 0 }, + timeout: undefined, }; }, computed: { @@ -106,6 +106,7 @@ export default { }, created() { this.setTheme(); + setTimeout(() => { this.timeout = this.dropDownMenu[0]; }, 1); //eslint-disable-line }, };