[fix] Check policies when reloading organizations for filters (#1677)
This commit is contained in:
parent
be30d47038
commit
5d1522b77a
|
@ -32,6 +32,10 @@ export class VaultFilterComponent extends BaseVaultFilterComponent {
|
||||||
// It should be removed as soon as doing so makes sense.
|
// It should be removed as soon as doing so makes sense.
|
||||||
async reloadOrganizations() {
|
async reloadOrganizations() {
|
||||||
this.organizations = await this.vaultFilterService.buildOrganizations();
|
this.organizations = await this.vaultFilterService.buildOrganizations();
|
||||||
|
this.activePersonalOwnershipPolicy =
|
||||||
|
await this.vaultFilterService.checkForPersonalOwnershipPolicy();
|
||||||
|
this.activeSingleOrganizationPolicy =
|
||||||
|
await this.vaultFilterService.checkForSingleOrganizationPolicy();
|
||||||
}
|
}
|
||||||
|
|
||||||
async initCollections() {
|
async initCollections() {
|
||||||
|
|
Loading…
Reference in New Issue