From 1a32b07771fdb76cda7bc2c847a2b6f22d83b260 Mon Sep 17 00:00:00 2001 From: sanguu516 Date: Mon, 26 Aug 2024 14:44:19 +0900 Subject: [PATCH] =?UTF-8?q?feat/=ED=85=8C=EC=9D=B4=EB=B8=94=20=EA=B8=B0?= =?UTF-8?q?=EC=B2=B4=EC=A4=91=EB=9F=89=20=ED=95=AD=EB=AA=A9=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 | 15 +++++++++++++++ src/components/flight/OperationApprovalsTable.js | 16 +++++++++++++++- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/src/components/flight/ControlApprovalsTable.js b/src/components/flight/ControlApprovalsTable.js index b53bb2e5..f86c27ee 100644 --- a/src/components/flight/ControlApprovalsTable.js +++ b/src/components/flight/ControlApprovalsTable.js @@ -387,6 +387,21 @@ export default function ControlApprovalsTable(props) { return fltElevMax ?? '-'; } }, + { + title: ( + <> + 기체중량 +
+ (kg) + + ), + dataIndex: 'droneWeight', + align: 'center', + width: '90px', + render: (droneWeight, record) => { + return droneWeight ?? '-'; + } + }, { title: <>세부 사항, dataIndex: 'dtl', diff --git a/src/components/flight/OperationApprovalsTable.js b/src/components/flight/OperationApprovalsTable.js index e562af62..96b40478 100644 --- a/src/components/flight/OperationApprovalsTable.js +++ b/src/components/flight/OperationApprovalsTable.js @@ -407,7 +407,21 @@ export default function OperationApprovalsTable(props) { return text || text === 0 ? text : '-'; } }, - + { + title: ( + <> + 기체중량 +
+ (kg) + + ), + dataIndex: 'droneWeight', + align: 'center', + width: '90px', + render: (droneWeight, record) => { + return droneWeight ?? '-'; + } + }, { title: <>비행 목적, dataIndex: 'purpose',