From 61350bec651966e6e117ac31fad9a5c66a8ac8e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?sanguu=28=EB=B0=95=EC=83=81=ED=98=84=29?= Date: Tue, 8 Nov 2022 14:20:31 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B9=84=ED=96=89=EA=B3=84=ED=9A=8D=20?= =?UTF-8?q?=EC=8B=A0=EC=B2=AD=EC=84=9C=20-=20=EC=A2=8C=ED=91=9C=EA=B0=92?= =?UTF-8?q?=20=EB=AC=B8=EA=B5=AC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/basis/flight/plan/FlightPlanAreaDetailForm.js | 3 ++- src/views/control/report/ControlReportDetail.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/basis/flight/plan/FlightPlanAreaDetailForm.js b/src/components/basis/flight/plan/FlightPlanAreaDetailForm.js index 46002838..61b0c4cb 100644 --- a/src/components/basis/flight/plan/FlightPlanAreaDetailForm.js +++ b/src/components/basis/flight/plan/FlightPlanAreaDetailForm.js @@ -406,7 +406,8 @@ const FlightPlanAreaDetailForm = ({
검색하신 지역의 날씨 정보입니다. - {`${weather.area1} ${weather.area2} ${weather.area3} ${weather.landNum}`} + {weather.area1 != undefined ? + `${weather.area1} ${weather.area2} ${weather.area3} ${weather.landNum}` : `선택하신 좌표는 없는 주소입니다.`}
diff --git a/src/views/control/report/ControlReportDetail.js b/src/views/control/report/ControlReportDetail.js index d8b57a61..05dd4979 100644 --- a/src/views/control/report/ControlReportDetail.js +++ b/src/views/control/report/ControlReportDetail.js @@ -317,7 +317,7 @@ const ControlReportDetail = props => { setHistoryModal={setHistoryModal} controlGpWarnLog={controlGpWarnLog} /> -
+ ); };