From 9cc522052723f1c2db9b6feffd958febeb071526 Mon Sep 17 00:00:00 2001 From: sanguu516 Date: Mon, 24 Jun 2024 15:50:40 +0900 Subject: [PATCH] =?UTF-8?q?=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 --- .../flight/NewFlightApprovalsTable.js | 25 +++++++++---------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/src/components/flight/NewFlightApprovalsTable.js b/src/components/flight/NewFlightApprovalsTable.js index 5d41ea1a..e1c294fd 100644 --- a/src/components/flight/NewFlightApprovalsTable.js +++ b/src/components/flight/NewFlightApprovalsTable.js @@ -132,14 +132,14 @@ export default function NewFlightApprovalsTable(props) { title: ( <> 행정
- 구역 + 구역 1 ), dataIndex: 'areaList', width: '90px', align: 'center', render: areaList => { - return areaList.length <= 1 ? '서울시특별시' : '-'; + return areaList.length <= 1 ? '서울특별시' : '-'; } }, { @@ -174,7 +174,7 @@ export default function NewFlightApprovalsTable(props) { title: ( <> 증심좌표
- (위도/경도) + (위도,경도) ), dataIndex: 'areaList', @@ -264,7 +264,7 @@ export default function NewFlightApprovalsTable(props) { width: '110px', editable: true, render: areaList => { - return areaList.length <= 1 ? <> : '-'; + return areaList.length <= 1 ? <>- : '-'; } }, { @@ -422,11 +422,11 @@ export default function NewFlightApprovalsTable(props) { } }, { - dataIndex: '서울시특별시', + dataIndex: '서울특별시', align: 'center', width: '90px', render: text => { - return <>서울시특별시; + return <>서울특별시; } }, { @@ -518,7 +518,6 @@ export default function NewFlightApprovalsTable(props) { { dataIndex: '더보기', align: 'center', - editable: true, width: '130px', render: text => { return <>-; @@ -895,12 +894,12 @@ const EditableCell = ({ style={{ margin: 0 }} - rules={[ - { - required: true, - message: `값을 입력 해 주세요.` - } - ]} + // rules={[ + // { + // required: true, + // message: `값을 입력해 주세요` + // } + // ]} > {inputNode}