Skip to content

Commit

Permalink
avniproject/avni-client#1172 | Fix RuleFailureTelemetrySorting
Browse files Browse the repository at this point in the history
  • Loading branch information
himeshr committed Nov 16, 2023
1 parent b3a9961 commit d07abf7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const columns = [
},
{
title: "Closed Date",
field: "closeDateTime",
field: "closedDateTime",
render: rowData =>
rowData.closeDateTime && moment(rowData.closeDateTime).format("YYYY-MM-DD HH:mm")
},
Expand All @@ -64,17 +64,17 @@ const columns = [
},
{
title: "Source",
field: "source",
field: "sourceId",
render: renderIdAndType("sourceId", "sourceType")
},
{
title: "Entity",
field: "entity",
field: "entityId",
render: renderIdAndType("entityId", "entityType")
},
{
title: "App",
field: "app",
field: "appType",
render: rowData => rowData.appType
}
];
Expand Down

0 comments on commit d07abf7

Please sign in to comment.