mirror of https://github.com/keeweb/keeweb
fix #1350: clearing master password after auto lock period
parent
243c962667
commit
e568d06b02
|
@ -73,6 +73,7 @@ class OpenView extends View {
|
|||
this.once('remove', () => {
|
||||
this.passwordInput.reset();
|
||||
});
|
||||
this.listenTo(Events, 'user-idle', this.userIdle);
|
||||
}
|
||||
|
||||
render() {
|
||||
|
@ -968,6 +969,11 @@ class OpenView extends View {
|
|||
});
|
||||
this.views.gen = generator;
|
||||
}
|
||||
|
||||
userIdle() {
|
||||
this.inputEl.val('');
|
||||
this.passwordInput.reset();
|
||||
}
|
||||
}
|
||||
|
||||
export { OpenView };
|
||||
|
|
|
@ -5,6 +5,7 @@ Release notes
|
|||
`+` #1400: auto-apply tag when creating new entry in tag view
|
||||
`+` #1342: hint that the data will be stored in unencrypted form after exporting
|
||||
`*` #1471: WebDAV url validation, only HTTPS is allowed
|
||||
`+` #1350: clearing master password after auto lock period
|
||||
`-` fix #1463: copying the original url instead of adding https:
|
||||
|
||||
##### v1.14.0 (2020-04-18)
|
||||
|
|
Loading…
Reference in New Issue