1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 05:13:29 +00:00

[PM-13253] Ensure the bulk menu is enabled when showBulkEditCollectionAccess is true (#11448)

This commit is contained in:
Shane Melton
2024-10-08 06:50:22 -07:00
committed by GitHub
parent df14e3f030
commit a83646be33

View File

@@ -92,7 +92,12 @@ export class VaultItemsComponent {
} }
get disableMenu() { get disableMenu() {
return !this.bulkMoveAllowed && !this.showAssignToCollections() && !this.showDelete(); return (
!this.bulkMoveAllowed &&
!this.showAssignToCollections() &&
!this.showDelete() &&
!this.showBulkEditCollectionAccess
);
} }
get bulkAssignToCollectionsAllowed() { get bulkAssignToCollectionsAllowed() {