1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-23 11:56:00 +01:00

make filter public

This commit is contained in:
Kyle Spearrin 2018-08-22 22:35:18 -04:00
parent a360cd8e61
commit 3d02a1ecb8

View File

@ -19,8 +19,8 @@ export class CiphersComponent {
ciphers: CipherView[] = [];
searchText: string;
searchPlaceholder: string = null;
filter: (cipher: CipherView) => boolean = null;
protected filter: (cipher: CipherView) => boolean = null;
protected searchPending = false;
private searchTimeout: any = null;