From a83646be33ad729dc5a3ebde2cc098e4570565f0 Mon Sep 17 00:00:00 2001 From: Shane Melton Date: Tue, 8 Oct 2024 06:50:22 -0700 Subject: [PATCH] [PM-13253] Ensure the bulk menu is enabled when showBulkEditCollectionAccess is true (#11448) --- .../vault/components/vault-items/vault-items.component.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/web/src/app/vault/components/vault-items/vault-items.component.ts b/apps/web/src/app/vault/components/vault-items/vault-items.component.ts index 404a1affbd..6e20ed8c3e 100644 --- a/apps/web/src/app/vault/components/vault-items/vault-items.component.ts +++ b/apps/web/src/app/vault/components/vault-items/vault-items.component.ts @@ -92,7 +92,12 @@ export class VaultItemsComponent { } get disableMenu() { - return !this.bulkMoveAllowed && !this.showAssignToCollections() && !this.showDelete(); + return ( + !this.bulkMoveAllowed && + !this.showAssignToCollections() && + !this.showDelete() && + !this.showBulkEditCollectionAccess + ); } get bulkAssignToCollectionsAllowed() {