🐛 Re: #127 - Fixes translation not loading

This commit is contained in:
Alicia Sykes 2021-08-15 13:17:10 +01:00
parent 6f8ab4a251
commit f034349659
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
},
};