1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 18:23:31 +00:00

Close browser popup on Escape key press

This commit is contained in:
lionel-rowe
2021-02-18 08:40:13 +00:00
parent 8d2e436a05
commit aee1968436
4 changed files with 16 additions and 2 deletions

View File

@@ -357,4 +357,11 @@ export class GroupingsComponent extends BaseGroupingsComponent implements OnInit
return true;
}
closeOnEsc(e: KeyboardEvent) {
// If input not empty, use browser default behavior of clearing input instead
if (e.key === 'Escape' && (this.searchText == null || this.searchText === '')) {
BrowserApi.closePopup(window);
}
}
}