mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-07 09:31:31 +01:00
Enabled ownership changes for cloned items (#61)
This commit is contained in:
parent
3d2e2cb174
commit
08b1a022f6
@ -233,7 +233,8 @@ export class AddEditComponent implements OnInit {
|
||||
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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user