From 38c79891e9b85e5495860ae1d54a32462212af2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?hagjoon=28=EC=9D=B4=ED=95=99=EC=A4=80=29?= Date: Tue, 6 Sep 2022 15:31:09 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B9=84=ED=96=89=EA=B5=AC=EC=97=AD=EC=84=A4?= =?UTF-8?q?=EC=A0=95=20=EC=BD=98=EC=86=94=EC=97=90=EB=9F=AC=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../basis/flight/plan/FlightPlanAreaDetailForm.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/basis/flight/plan/FlightPlanAreaDetailForm.js b/src/components/basis/flight/plan/FlightPlanAreaDetailForm.js index 51de7a61..78b632a6 100644 --- a/src/components/basis/flight/plan/FlightPlanAreaDetailForm.js +++ b/src/components/basis/flight/plan/FlightPlanAreaDetailForm.js @@ -94,7 +94,7 @@ const FlightPlanAreaDetailForm = ({ handleSave, handleClose, handleChange, handl readOnly={coordList[0].lat && (data[0].areaType && data[0].areaType != ("POLYGON")) ? false : true } placeholder='반경' - value={data ? data[0].bufferZone : ''} + value={data[0].bufferZone ? data[0].bufferZone : ''} onChange={(e) => { const {name, value} = e.target; handleChange({ @@ -130,7 +130,7 @@ const FlightPlanAreaDetailForm = ({ handleSave, handleClose, handleChange, handl name='fltElev' bsSize='sm' placeholder='고도' - value={data ? data[0].fltElev : ''} + value={data[0].fltElev ? data[0].fltElev : ''} onChange={(e) => { const {name, value} = e.target; handleChange({ @@ -154,7 +154,7 @@ const FlightPlanAreaDetailForm = ({ handleSave, handleClose, handleChange, handl name='fltMethod' bsSize='sm' placeholder='비행 방식' - value={data ? data[0].fltMethod : ''} + value={data[0].fltMethod ? data[0].fltMethod : ''} onChange={(e) => { const {name, value} = e.target; handleChange({