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