diff --git a/src/components/flight/OperationApprovalsTable.js b/src/components/flight/OperationApprovalsTable.js index 85076f96..33788437 100644 --- a/src/components/flight/OperationApprovalsTable.js +++ b/src/components/flight/OperationApprovalsTable.js @@ -173,7 +173,8 @@ export default function OperationApprovalsTable(props) { { title: ( <> - 상세
+ 상세 +
주소 ), @@ -189,7 +190,8 @@ export default function OperationApprovalsTable(props) { { title: ( <> - 장애물
+ 장애물 +
제한 표면 ), @@ -197,13 +199,19 @@ export default function OperationApprovalsTable(props) { width: '100px', align: 'center', render: areaList => { - return areaList.length <= 1 ? areaList[0].limitZoneNm : '-'; + return areaList.length <= 1 + ? areaList[0]?.limitZoneNm + ? areaList[0]?.limitZoneNm + : '-' + : '-'; + // return areaList.length <= 1 ? areaList[0].limitZoneNm : '-'; } }, { title: ( <> - 중심 좌표
+ 중심 좌표 +
(위도, 경도) ), @@ -301,11 +309,7 @@ export default function OperationApprovalsTable(props) { }, { - title: ( - <> - 비행 목적 - - ), + title: <>비행 목적, dataIndex: 'areaList', align: 'center', width: '110px', @@ -487,9 +491,7 @@ export default function OperationApprovalsTable(props) { render: (areaList, record) => areaList.length <= 1 ? ( ) : ( <>- @@ -707,9 +709,7 @@ export default function OperationApprovalsTable(props) { width: '110px', render: (_, record) => ( ) } @@ -742,7 +742,8 @@ export default function OperationApprovalsTable(props) { planSno: item.planSno, addr1: item.addr1, addr2: item.addr2, - addr3: item.addr3 + addr3: item.addr3, + limitZoneNm: item?.limitZoneNm ? item?.limitZoneNm : '-' }); });