1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-13 01:58:44 +02: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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);
}