1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-12-31 17:57:43 +01:00

[Soft Delete] - Included deleted flag on reload

This commit is contained in:
Chad Scharf 2020-04-06 18:20:39 -04:00
parent 19668ab5f2
commit 2a3e03c70d

View File

@ -55,10 +55,10 @@ export class CiphersComponent {
this.didScroll = this.pagedCiphers.length > this.pageSize;
}
async reload(filter: (cipher: CipherView) => boolean = null) {
async reload(filter: (cipher: CipherView) => boolean = null, deleted: boolean = false) {
this.loaded = false;
this.ciphers = [];
await this.load(filter);
await this.load(filter, deleted);
}
async refresh() {