Skip to content

Commit

Permalink
Update processTrackUtils.ts (#991)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashish-egov authored Jul 1, 2024
1 parent 69dfe1a commit 40f76c8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ async function getProcessDetails(id: any, getNew: any = false): Promise<any> {
delete result.campaignid;
result.additionalDetails = result.additionaldetails;
delete result.additionaldetails;
result.createdTime = result.createdtime;
result.createdTime = parseInt(result.createdtime);
delete result.createdtime;
result.lastModifiedTime = result.lastmodifiedtime;
result.lastModifiedTime = parseInt(result.lastmodifiedtime);
delete result.lastmodifiedtime;
return result;
}
Expand Down

0 comments on commit 40f76c8

Please sign in to comment.