1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-18 02:41:15 +02:00

Add back in refresh() in ciphers.component (#451)

This commit is contained in:
Thomas Rittson 2021-08-11 08:24:39 +10:00 committed by GitHub
parent 98098c3fb6
commit a2b62755bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,6 +42,10 @@ export class CiphersComponent {
await this.load(filter, deleted);
}
async refresh() {
await this.reload(this.filter, this.deleted);
}
async applyFilter(filter: (cipher: CipherView) => boolean = null) {
this.filter = filter;
await this.search(null);