diff --git a/src/components/flight/FlightApprovalsTable.js b/src/components/flight/FlightApprovalsTable.js index d6e0609e..79861434 100644 --- a/src/components/flight/FlightApprovalsTable.js +++ b/src/components/flight/FlightApprovalsTable.js @@ -70,7 +70,13 @@ export default function FlightApprovalsTable(props) { selector: row => row.applyNo, center: true, cell: row => { - return row.applyNo; + return ( + <> + {row.applyNo.slice(0, 5)} +
+ {row.applyNo.slice(5)} + + ); } }, { @@ -84,7 +90,13 @@ export default function FlightApprovalsTable(props) { selector: row => row.applyDt, center: true, cell: row => { - return dayjs(row.applyDt).format('YYYY-MM-DD'); + return ( + <> + {dayjs(row.applyDt).format('YYYY-MM-DD').slice(0, 5)} +
+ {dayjs(row.applyDt).format('YYYY-MM-DD').slice(5)} + + ); } }, {