From 5ed5e18dc610a7c6b5e0935a50cfcd7c8af936a4 Mon Sep 17 00:00:00 2001 From: sanguu516 Date: Tue, 27 Aug 2024 19:03:23 +0900 Subject: [PATCH] =?UTF-8?q?fix/=EC=98=81=EB=A6=AC=20=EB=B9=84=EC=98=81?= =?UTF-8?q?=EB=A6=AC=20=EC=97=86=EC=9D=84=EB=95=8C=20=EA=B0=92=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/flight/ControlApprovalsTable.js | 4 ---- src/components/flight/OperationApprovalsTable.js | 3 +++ 2 files changed, 3 insertions(+), 4 deletions(-) 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' ? '영리' : '비영리'; } },