1
0
mirror of https://github.com/bitwarden/browser synced 2025-01-02 21:21:35 +01:00

Fix enum name.

This commit is contained in:
Alec Rippberger 2024-09-18 14:58:00 -05:00
parent 605a481c0c
commit b0d2114e4a
No known key found for this signature in database
GPG Key ID: 9DD8DA583B28154A

View File

@ -866,7 +866,7 @@ export class VaultComponent implements OnInit, OnDestroy {
this.go({ cipherId: null, itemId: null, action: null }); this.go({ cipherId: null, itemId: null, action: null });
} }
if (result?.action === ViewCipherDialogResult.edited) { if (result?.action === ViewCipherDialogResult.Edited) {
// Edit cipher and trigger MP re-prompt // Edit cipher and trigger MP re-prompt
await this.editCipher(cipherView, false); await this.editCipher(cipherView, false);
this.go({ cipherId: null, itemId: cipherView.id, action: "edit" }); this.go({ cipherId: null, itemId: cipherView.id, action: "edit" });