김지은 4 months ago
parent
commit
4c0a88117a
  1. 2
      src/assets/css/custom.css
  2. 10
      src/components/flight/FlightApprovalsTable.js

2
src/assets/css/custom.css

@ -1216,4 +1216,4 @@ caption {overflow: hidden; line-height: 0;text-indent: -2000px;}
/* .bg-color div{background:#eeeeee} */
.flight-approval-layer .react-dataTable .rdt_TableHead .rdt_TableHeadRow .custom-header-cell{text-align:center;line-height:1.3;}
.flight-approval-layer .react-dataTable .rdt_TableHead .rdt_TableHeadRow{height:auto}
.flight-approval-in-table .rdt_TableRow:last-child{border-bottom:1px solid #ddd}
.flight-approval-in-table .rdt_TableRow:last-child{border-bottom:1px solid rgba(0, 0, 0, .12);}

10
src/components/flight/FlightApprovalsTable.js

@ -111,7 +111,7 @@ export default function FlightApprovalsTable(props) {
),
selector: row => row.areaList[0].zoneNo,
center: true,
sortable: true,
// sortable: true,
width: '80px',
cell: row => {
return row.areaList[0].zoneNo + '번';
@ -128,7 +128,7 @@ export default function FlightApprovalsTable(props) {
selector: row => row.areaList[0].lat,
center: true,
width: '110px',
sortable: true,
// sortable: true,
cell: row => {
return (
<>
@ -150,7 +150,7 @@ export default function FlightApprovalsTable(props) {
selector: row => row.areaList[0].bufferZone,
center: true,
width: '80px',
sortable: true,
// sortable: true,
cell: row => {
return row.areaList[0].bufferZone;
}
@ -166,7 +166,7 @@ export default function FlightApprovalsTable(props) {
selector: row => row.areaList[0].fltElev,
center: true,
width: '80px',
sortable: true,
// sortable: true,
cell: row => {
return row.areaList[0].fltElev;
}
@ -182,7 +182,7 @@ export default function FlightApprovalsTable(props) {
selector: row => row.areaList[0].approvalCd,
center: true,
width: '80px',
sortable: true,
// sortable: true,
cell: row => {
return row.areaList[0].approvalCd === 'U'
? '비대상'

Loading…
Cancel
Save