1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

Added missed clone mode conditionals and fixed add/edit state bug (#385)

This commit is contained in:
Vincent Salucci
2020-02-19 13:59:38 -06:00
committed by GitHub
parent 11f39fe781
commit 5254c5ae59
3 changed files with 11 additions and 5 deletions

View File

@@ -36,6 +36,11 @@ export class AddEditComponent extends BaseAddEditComponent implements OnChanges
async ngOnChanges() {
await super.init();
await super.load();
await this.load();
}
async load() {
this.cipher = null;
super.load();
}
}