[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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

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(