From 8998798fa4ab7a59883e8cc58d538e06c4113836 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 29 Oct 2018 10:06:42 -0400 Subject: [PATCH] always load nested collections --- src/app/organizations/vault/groupings.component.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/app/organizations/vault/groupings.component.ts b/src/app/organizations/vault/groupings.component.ts index dcfb1605ba..73ad717944 100644 --- a/src/app/organizations/vault/groupings.component.ts +++ b/src/app/organizations/vault/groupings.component.ts @@ -46,9 +46,6 @@ export class GroupingsComponent extends BaseGroupingsComponent { unassignedCollection.organizationId = this.organization.id; unassignedCollection.readOnly = true; this.collections.push(unassignedCollection); - - if (this.loadNestedCollections) { - this.nestedCollections = await this.collectionService.getAllNested(this.collections); - } + this.nestedCollections = await this.collectionService.getAllNested(this.collections); } }