1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-06 00:03:29 +00:00

Stop clearing list on every reload (#784)

This commit is contained in:
Jake Fink
2022-05-04 11:10:21 -04:00
committed by GitHub
parent 9d411fd37d
commit 80c834b52a

View File

@@ -32,7 +32,6 @@ export class CiphersComponent {
async reload(filter: (cipher: CipherView) => boolean = null, deleted = false) {
this.loaded = false;
this.ciphers = [];
await this.load(filter, deleted);
}