🔀 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

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