Browse Source

신청일자 컬럼 수정

master
sanguu516 4 months ago
parent
commit
76b5ac30c7
  1. 4
      src/components/flight/FlightApprovalsTable.js

4
src/components/flight/FlightApprovalsTable.js

@ -22,12 +22,12 @@ export default function FlightApprovalsTable(props) {
}, },
{ {
name: '신청일자', name: '신청일자',
selector: row => row.createDt, selector: row => row.applyDt,
center: true, center: true,
width: '182px', width: '182px',
sortable: true, sortable: true,
cell: row => { cell: row => {
return dayjs(row.createDt).format('YYYY-MM-DD'); return dayjs(row.applyDt).format('YYYY-MM-DD');
} }
} }
]; ];

Loading…
Cancel
Save