mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
fix encryptCipherData
This commit is contained in:
@@ -30,7 +30,11 @@ export class CipherView implements View {
|
||||
// tslint:disable-next-line
|
||||
private _subTitle: string;
|
||||
|
||||
constructor(c: Cipher) {
|
||||
constructor(c?: Cipher) {
|
||||
if (!c) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.id = c.id;
|
||||
this.organizationId = c.organizationId;
|
||||
this.folderId = c.folderId;
|
||||
|
||||
Reference in New Issue
Block a user