diff --git a/src/components/flight/ControlApprovalsTable.js b/src/components/flight/ControlApprovalsTable.js index 51700a21..77f4b289 100644 --- a/src/components/flight/ControlApprovalsTable.js +++ b/src/components/flight/ControlApprovalsTable.js @@ -472,10 +472,6 @@ export default function ControlApprovalsTable(props) { align: 'center', width: '130px', render: (reviewedProcType, record) => { - const handleMouseDown = e => { - e.stopPropagation(); // 이벤트 전파 중지 - }; - if (reviewedProcType === 'S') { reviewedProcType = 'Q'; } diff --git a/src/components/flight/OperationApprovalsTable.js b/src/components/flight/OperationApprovalsTable.js index c03e4ce5..616f0e41 100644 --- a/src/components/flight/OperationApprovalsTable.js +++ b/src/components/flight/OperationApprovalsTable.js @@ -428,6 +428,9 @@ export default function OperationApprovalsTable(props) { align: 'center', width: '90px', render: (benefit, record) => { + if (benefit == null) { + return '-'; + } return benefit === 'Y' ? '영리' : '비영리'; } },