mirror of
https://github.com/bitwarden/jslib
synced 2025-12-19 17:53:48 +00:00
Fix glob processing in npm. Ban single param parens (#257)
This commit is contained in:
@@ -82,7 +82,7 @@ export class CiphersComponent {
|
||||
if (this.searchTimeout != null) {
|
||||
clearTimeout(this.searchTimeout);
|
||||
}
|
||||
const deletedFilter: (cipher: CipherView) => boolean = (c) => c.isDeleted === this.deleted;
|
||||
const deletedFilter: (cipher: CipherView) => boolean = c => c.isDeleted === this.deleted;
|
||||
if (timeout == null) {
|
||||
this.ciphers = await this.searchService.searchCiphers(this.searchText, [this.filter, deletedFilter], null);
|
||||
await this.resetPaging();
|
||||
|
||||
Reference in New Issue
Block a user