🔀 Merge pull request #161 from Lissy93/FIX/missing-translation

[FIX] Missing translation on Login screen
Fixes  #127
This commit is contained in:
Alicia Sykes 2021-08-15 13:56:48 +01:00 committed by GitHub
commit 2c0fe0e38e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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
},
};