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() {