Skip to content

Commit

Permalink
Update boundaryUtils.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
ashish-egov authored Jul 17, 2024
1 parent c83037f commit cf9380b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utilities/boundary-bulk-bff/src/server/utils/boundaryUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -685,9 +685,9 @@ function formatRows(rows: any) {
row.additionalDetails = row.additionaldetails;
delete row.additionaldetails;
row.auditDetails = {
createdTime: row.createdtime,
createdTime: parseInt(row.createdtime),
createdBy: row.createdby,
lastModifiedTime: row.lastmodifiedtime,
lastModifiedTime: parseInt(row.lastmodifiedtime),
lastModifiedBy: row.lastmodifiedby
}
delete row.createdtime;
Expand Down

0 comments on commit cf9380b

Please sign in to comment.