Browse Source

띄어쓰기

master
김지은 2 months ago
parent
commit
573551b549
  1. 2
      src/components/flight/ControlApprovalsTable.js
  2. 2
      src/components/flight/OperationApprovalsTable.js

2
src/components/flight/ControlApprovalsTable.js

@ -973,7 +973,7 @@ export default function ControlApprovalsTable(props) {
const year = date.getFullYear();
const month = String(date.getMonth() + 1).padStart(2, '0');
const day = String(date.getDate()).padStart(2, '0');
return `${year} ${month} ${day} `;
return `${year}${month}${day} `;
};
const handleExpand = key => {

2
src/components/flight/OperationApprovalsTable.js

@ -951,7 +951,7 @@ export default function OperationApprovalsTable(props) {
const year = date.getFullYear();
const month = String(date.getMonth() + 1).padStart(2, '0');
const day = String(date.getDate()).padStart(2, '0');
return `${year} ${month} ${day} `;
return `${year}${month}${day} `;
};
// 테이블 행 확장 이벤트

Loading…
Cancel
Save