1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-30 11:15:36 +02:00

[PM-7087] Hide bulk assign collections menu item when showBulkAddToCollections is false (#8494)

This commit is contained in:
Shane Melton 2024-03-26 09:10:28 -07:00 committed by GitHub
parent f7014a973c
commit 1cb1654346
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 {