1
0
mirror of https://github.com/bitwarden/web synced 2025-12-06 00:03:28 +00:00

[fix] Override collection filter init to consider organization vault (#1652)

* [fix] Override collection filter init to consider organization vault

* [dep] Update jslib
This commit is contained in:
Addison Beck
2022-05-10 09:04:39 -04:00
committed by GitHub
parent da62cec6f0
commit 81c6a4b1df
2 changed files with 5 additions and 1 deletions

2
jslib

Submodule jslib updated: 4550b7ddf8...00deb38de5

View File

@@ -33,4 +33,8 @@ export class VaultFilterComponent extends BaseVaultFilterComponent {
async reloadOrganizations() {
this.organizations = await this.vaultFilterService.buildOrganizations();
}
async initCollections() {
return await this.vaultFilterService.buildCollections(this.organization?.id);
}
}