Skip to content

Commit

Permalink
🔀 Merge pull request gchq#161 from Lissy93/FIX/missing-translation
Browse files Browse the repository at this point in the history
[FIX] Missing translation on Login screen
Fixes  gchq#127
  • Loading branch information
Lissy93 authored Aug 15, 2021
2 parents 6f8ab4a + f034349 commit 2c0fe0e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/views/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down Expand Up @@ -106,6 +106,7 @@ export default {
},
created() {
this.setTheme();
setTimeout(() => { this.timeout = this.dropDownMenu[0]; }, 1); //eslint-disable-line
},
};
Expand Down

0 comments on commit 2c0fe0e

Please sign in to comment.