mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
loaded so that we dont see a flash of no items
This commit is contained in:
@@ -20,6 +20,7 @@ export class CiphersComponent {
|
||||
@Output() onCipherClicked = new EventEmitter<CipherView>();
|
||||
@Output() onAddCipher = new EventEmitter();
|
||||
|
||||
loaded: boolean = false;
|
||||
ciphers: CipherView[] = [];
|
||||
searchText: string;
|
||||
searchPlaceholder: string = null;
|
||||
@@ -36,6 +37,8 @@ export class CiphersComponent {
|
||||
} else {
|
||||
this.ciphers = ciphers.filter(this.filter);
|
||||
}
|
||||
|
||||
this.loaded = true;
|
||||
}
|
||||
|
||||
async refresh() {
|
||||
|
||||
Reference in New Issue
Block a user