mirror of
https://github.com/bitwarden/browser
synced 2025-01-23 09:42:06 +01:00
[PM-13253] Ensure the bulk menu is enabled when showBulkEditCollectionAccess is true (#11448)
This commit is contained in:
parent
df14e3f030
commit
a83646be33
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user