1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-14 06:48:18 +02: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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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