mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-02 18:17:46 +01:00
apply filters on org vault
This commit is contained in:
parent
c71a432ce4
commit
e8ac2b561a
@ -78,10 +78,14 @@ export class CiphersComponent extends BaseCiphersComponent {
|
||||
return super.search(timeout);
|
||||
}
|
||||
this.searchPending = false;
|
||||
let filteredCiphers = this.allCiphers;
|
||||
if (this.filter != null) {
|
||||
filteredCiphers = filteredCiphers.filter(this.filter);
|
||||
}
|
||||
if (this.searchText == null || this.searchText.trim().length < 2) {
|
||||
this.ciphers = this.allCiphers;
|
||||
this.ciphers = filteredCiphers;
|
||||
} else {
|
||||
this.ciphers = this.searchService.searchCiphersBasic(this.allCiphers, this.searchText);
|
||||
this.ciphers = this.searchService.searchCiphersBasic(filteredCiphers, this.searchText);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user