diff --git a/src/components/flight/FlightApprovalsTable.js b/src/components/flight/FlightApprovalsTable.js index 79861434..b591d205 100644 --- a/src/components/flight/FlightApprovalsTable.js +++ b/src/components/flight/FlightApprovalsTable.js @@ -241,14 +241,30 @@ export default function FlightApprovalsTable(props) { selector: row => row.applyNo, center: true, cell: row => { - return '240503-0001'; + return ( + // <> + // {row.applyNo.slice(0, 5)} + //
+ // {row.applyNo.slice(5)} + // + <> + 24060 +
5-0542 + + ); } }, { 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)} + + ); } }, {