From d84b9a1ba5b6d6896f2f65f46d086c2a6a39c79c Mon Sep 17 00:00:00 2001 From: JANGHYUNn Date: Mon, 27 Nov 2023 09:57:22 +0900 Subject: [PATCH] =?UTF-8?q?=EB=8C=80=EC=8B=9C=EB=B3=B4=EB=93=9C=20super=20?= =?UTF-8?q?=EA=B4=80=EB=A6=AC=EC=9E=90=20=EA=B6=8C=ED=95=9C=20=EB=B6=84?= =?UTF-8?q?=EA=B8=B0=20=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/crud/grid/GridDatatable.js | 1 - .../dashboard/DroneFlightSchedule.js | 39 +++++++++---------- src/containers/main/dash/MainDashContainer.js | 4 +- 3 files changed, 22 insertions(+), 22 deletions(-) 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 => ( + + ))} + + )}