1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 10:13:31 +00:00

[PM-7162] Fix broken getter when original cipher is null (#9927)

This commit is contained in:
Shane Melton
2024-07-02 16:41:57 -07:00
committed by GitHub
parent ca4ac38fcb
commit 3041ddbf09

View File

@@ -104,7 +104,7 @@ export class AddEditV2Component {
}
get originalCipherId(): CipherId | null {
return this.config?.originalCipher.id as CipherId;
return this.config?.originalCipher?.id as CipherId;
}
constructor(