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',