diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index a4441bfa..5ea1b631 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -21,10 +21,6 @@ -## Testing requirements - - - ## Before you submit - [ ] I have checked for **linting** errors (`npm run lint`) (required) diff --git a/jslib b/jslib index 597e4594..8a0f096f 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 597e45940a3a96946b9d873fcccc6f90994b7716 +Subproject commit 8a0f096fd6e5ec11340edd1f19800604a325fc23 diff --git a/src/app/modules/vault-filter/vault-filter.component.ts b/src/app/modules/vault-filter/vault-filter.component.ts index 2cbafef2..9ffee922 100644 --- a/src/app/modules/vault-filter/vault-filter.component.ts +++ b/src/app/modules/vault-filter/vault-filter.component.ts @@ -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); + } }