Browse Source

fix/컬럼명 수정

master
sanguu516 4 weeks ago
parent
commit
244ace631f
  1. 6
      src/components/flight/ControlApprovalsTable.js
  2. 6
      src/components/flight/OperationApprovalsTable.js

6
src/components/flight/ControlApprovalsTable.js

@ -395,11 +395,11 @@ export default function ControlApprovalsTable(props) {
(kg)
</>
),
dataIndex: 'droneWeight',
dataIndex: 'weightNm',
align: 'center',
width: '90px',
render: (droneWeight, record) => {
return droneWeight ?? '-';
render: (weightNm, record) => {
return weightNm ?? '-';
}
},
{

6
src/components/flight/OperationApprovalsTable.js

@ -415,11 +415,11 @@ export default function OperationApprovalsTable(props) {
(kg)
</>
),
dataIndex: 'droneWeight',
dataIndex: 'weightNm',
align: 'center',
width: '90px',
render: (droneWeight, record) => {
return droneWeight ?? '-';
render: (weightNm, record) => {
return weightNm ?? '-';
}
},
{

Loading…
Cancel
Save