dont make date obj from revision date
This commit is contained in:
parent
c0f6fa2db1
commit
b21cb789da
|
@ -37,7 +37,7 @@ export class CipherResponse {
|
||||||
this.favorite = response.Favorite || false;
|
this.favorite = response.Favorite || false;
|
||||||
this.edit = response.Edit || true;
|
this.edit = response.Edit || true;
|
||||||
this.organizationUseTotp = response.OrganizationUseTotp;
|
this.organizationUseTotp = response.OrganizationUseTotp;
|
||||||
this.revisionDate = new Date(response.RevisionDate);
|
this.revisionDate = response.RevisionDate;
|
||||||
|
|
||||||
if (response.Login != null) {
|
if (response.Login != null) {
|
||||||
this.login = new LoginApi(response.Login);
|
this.login = new LoginApi(response.Login);
|
||||||
|
|
Loading…
Reference in New Issue