Browse Source

문구 수정

master
sanguu516 3 months ago
parent
commit
9cc5220527
  1. 25
      src/components/flight/NewFlightApprovalsTable.js

25
src/components/flight/NewFlightApprovalsTable.js

@ -132,14 +132,14 @@ export default function NewFlightApprovalsTable(props) {
title: (
<>
행정 <br />
구역
구역 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: (
<>
증심좌표 <br />
(위도/경도)
(위도,경도)
</>
),
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}
</Form.Item>

Loading…
Cancel
Save