Skip to content

Commit

Permalink
FEATURE/HCMPRE-0000: adhoc fix (#2179)
Browse files Browse the repository at this point in the history
? added
  • Loading branch information
suryansh-egov authored Jan 29, 2025
1 parent cf8965b commit 68e3dbd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export const UICustomizations = {
/>):(<>{t("CHECKLIST_TOBE_CONFIGURED")}</>)
);
case "CHECKLIST_LAST_UPDATE":
const lastModDate = row?.ServiceRequest.length !== 0 ? row?.ServiceRequest?.[0]?.auditDetails?.lastModifiedTime : row?.auditDetails?.lastModifiedTime;
const lastModDate = row?.ServiceRequest?.length !== 0 ? row?.ServiceRequest?.[0]?.auditDetails?.lastModifiedTime : row?.auditDetails?.lastModifiedTime;
return Digit.DateUtils.ConvertEpochToDate(lastModDate);
case "HCM_CHECKLIST_ACTION":
const role_code = row?.data?.role;
Expand Down

0 comments on commit 68e3dbd

Please sign in to comment.