1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 23:33:31 +00:00

Enabled ownership changes for cloned items (#61)

This commit is contained in:
Vincent Salucci
2020-02-01 14:28:45 -06:00
committed by GitHub
parent 3d2e2cb174
commit 08b1a022f6

View File

@@ -232,8 +232,9 @@ export class AddEditComponent implements OnInit {
(this.cipher.login.uris[0].uri == null || this.cipher.login.uris[0].uri === '')) {
this.cipher.login.uris = null;
}
if (!this.editMode && this.cipher.organizationId != null) {
// Allows saving of selected collections during "Add" and "Clone" flows
if ((!this.editMode || this.cloneMode) && this.cipher.organizationId != null) {
this.cipher.collectionIds = this.collections == null ? [] :
this.collections.filter((c) => (c as any).checked).map((c) => c.id);
}