mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
null checks
This commit is contained in:
parent
db1a632c65
commit
5d95fc733c
@ -178,7 +178,7 @@ export class Cipher extends Domain {
|
||||
c.edit = this.edit;
|
||||
c.organizationUseTotp = this.organizationUseTotp;
|
||||
c.favorite = this.favorite;
|
||||
c.revisionDate = this.revisionDate.toISOString();
|
||||
c.revisionDate = this.revisionDate != null ? this.revisionDate.toISOString() : null;
|
||||
c.type = this.type;
|
||||
c.collectionIds = this.collectionIds;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user