diff --git a/src/components/flight/FlightApprovalsTable.js b/src/components/flight/FlightApprovalsTable.js index 7237bef2..684a7f38 100644 --- a/src/components/flight/FlightApprovalsTable.js +++ b/src/components/flight/FlightApprovalsTable.js @@ -22,12 +22,12 @@ export default function FlightApprovalsTable(props) { }, { name: '신청일자', - selector: row => row.createDt, + selector: row => row.applyDt, center: true, width: '182px', sortable: true, cell: row => { - return dayjs(row.createDt).format('YYYY-MM-DD'); + return dayjs(row.applyDt).format('YYYY-MM-DD'); } } ];