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}