diff --git a/src/components/crud/grid/GridDatatable.js b/src/components/crud/grid/GridDatatable.js index 5dd45483..633ad4f4 100644 --- a/src/components/crud/grid/GridDatatable.js +++ b/src/components/crud/grid/GridDatatable.js @@ -10,7 +10,6 @@ import { import { selectableRowsComponent } from './selectableRowsComponent'; export const GridDatabase = props => { - console.log(props.rowsPerPageText); return props[`${props.handlerPageChange ? 'total' : 'count'}`] <= 0 ? (

표시할 데이터가 없습니다.

diff --git a/src/components/dashboard/DroneFlightSchedule.js b/src/components/dashboard/DroneFlightSchedule.js index 9e28cacb..91f8e7b8 100644 --- a/src/components/dashboard/DroneFlightSchedule.js +++ b/src/components/dashboard/DroneFlightSchedule.js @@ -127,25 +127,24 @@ export default function DroneFlightSchedule({
드론 별 비행운항 목록
- {user?.cptAuthCode === 'KAC' || - (user?.authId === 'SUPER' && ( - { - const { value } = e.target; - handlerDronOperationChange(value); - }} - > - - {competentAgency?.map(i => ( - - ))} - - ))} + {(user?.cptAuthCode === 'KAC' || user?.authId === 'SUPER') && ( + { + const { value } = e.target; + handlerDronOperationChange(value); + }} + > + + {competentAgency?.map(i => ( + + ))} + + )}