1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

cipher attachments modal

This commit is contained in:
Kyle Spearrin
2018-06-08 12:04:03 -04:00
parent 3db86e2a6b
commit d256a872fc
7 changed files with 152 additions and 85 deletions

View File

@@ -205,10 +205,10 @@ export class VaultComponent implements OnInit {
AddEditComponent, this.cipherAddEditRef);
childComponent.cipherId = cipher == null ? null : cipher.id;
childComponent.onSavedCipher.subscribe(async (cipher: CipherView) => {
childComponent.onSavedCipher.subscribe(async (c: CipherView) => {
this.modal.close();
});
childComponent.onDeletedCipher.subscribe(async (cipher: CipherView) => {
childComponent.onDeletedCipher.subscribe(async (c: CipherView) => {
this.modal.close();
});