make filter public

This commit is contained in:
Kyle Spearrin 2018-08-22 22:35:18 -04:00
parent a360cd8e61
commit 3d02a1ecb8
1 changed files with 1 additions and 1 deletions

View File

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