mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
[Soft Delete] - Included deleted flag on reload
This commit is contained in:
@@ -55,10 +55,10 @@ export class CiphersComponent {
|
|||||||
this.didScroll = this.pagedCiphers.length > this.pageSize;
|
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.loaded = false;
|
||||||
this.ciphers = [];
|
this.ciphers = [];
|
||||||
await this.load(filter);
|
await this.load(filter, deleted);
|
||||||
}
|
}
|
||||||
|
|
||||||
async refresh() {
|
async refresh() {
|
||||||
|
|||||||
Reference in New Issue
Block a user