[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
1 changed files with 2 additions and 2 deletions

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() {