mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 21:33:27 +00:00
[PM-7087] Hide bulk assign collections menu item when showBulkAddToCollections is false (#8494)
This commit is contained in:
@@ -91,7 +91,7 @@ export class VaultItemsComponent {
|
||||
}
|
||||
|
||||
get bulkAssignToCollectionsAllowed() {
|
||||
return this.ciphers.length > 0;
|
||||
return this.showBulkAddToCollections && this.ciphers.length > 0;
|
||||
}
|
||||
|
||||
protected canEditCollection(collection: CollectionView): boolean {
|
||||
|
||||
Reference in New Issue
Block a user