[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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

2
jslib

@ -1 +1 @@
Subproject commit 4550b7ddf819b4f4f0a5d62376df6f7bf2425118
Subproject commit 00deb38de589d67c48fa46be869e29aaef79fb8e

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);
}
}