mirror of
https://github.com/bitwarden/browser
synced 2024-12-25 17:32:46 +01:00
addEditCipherInfo w/ collections from state
This commit is contained in:
parent
bc5a6e02c1
commit
24ffb55ce0
@ -162,8 +162,13 @@ export class AddEditComponent implements OnInit {
|
||||
this.title = this.i18nService.t('addItem');
|
||||
}
|
||||
|
||||
this.cipher = await this.stateService.get<CipherView>('addEditCipher');
|
||||
await this.stateService.remove('addEditCipher');
|
||||
const addEditCipherInfo: any = await this.stateService.get<any>('addEditCipherInfo');
|
||||
if (addEditCipherInfo != null) {
|
||||
this.cipher = addEditCipherInfo.cipher;
|
||||
this.collectionIds = addEditCipherInfo.collectionIds;
|
||||
}
|
||||
await this.stateService.remove('addEditCipherInfo');
|
||||
|
||||
if (this.cipher == null) {
|
||||
if (this.editMode) {
|
||||
const cipher = await this.loadCipher();
|
||||
@ -179,7 +184,10 @@ export class AddEditComponent implements OnInit {
|
||||
this.cipher.identity = new IdentityView();
|
||||
this.cipher.secureNote = new SecureNoteView();
|
||||
this.cipher.secureNote.type = SecureNoteType.Generic;
|
||||
}
|
||||
}
|
||||
|
||||
if (this.cipher != null && (!this.editMode || addEditCipherInfo != null)) {
|
||||
await this.organizationChanged();
|
||||
if (this.collectionIds != null && this.collectionIds.length > 0 && this.collections.length > 0) {
|
||||
this.collections.forEach((c) => {
|
||||
@ -189,7 +197,6 @@ export class AddEditComponent implements OnInit {
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
this.folders = await this.folderService.getAllDecrypted();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user