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:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user