From 411f575fcedbf645b4cb7b8f4077bd760c9eeb37 Mon Sep 17 00:00:00 2001 From: sanguu Date: Mon, 19 Sep 2022 16:38:36 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B9=84=ED=96=89=20=EC=9D=B4=EB=A0=A5=20?= =?UTF-8?q?=EC=8B=9C=EC=8A=A4=ED=85=9C(=EB=B2=84=EA=B7=B8=20=EC=88=98?= =?UTF-8?q?=EC=A0=95)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../analysis/history/AnalysisHistoryContainer.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/containers/analysis/history/AnalysisHistoryContainer.js b/src/containers/analysis/history/AnalysisHistoryContainer.js index 00e94e5a..d2b246df 100644 --- a/src/containers/analysis/history/AnalysisHistoryContainer.js +++ b/src/containers/analysis/history/AnalysisHistoryContainer.js @@ -54,10 +54,8 @@ export const AnalysisHistoryContainer = props => { groupId: groupId } }); - dispatch(Actions.list.request({searchParams:param})); } - const handlerGroupCancel = () => { dispatch(FlightAction.FLIGHT_PLAN_GROUP_SELECT({ cstmrSno: 0, groupId: '', groupNm: '' })); } @@ -214,11 +212,11 @@ export const AnalysisHistoryContainer = props => { setParams({ stDate: searchParams.stDate, endDate: searchParams.endDate, - search1: searchParams.search1, + search1: '', groupId: searchData.groupId }); } - handlerSearch(); + // handlerSearch(); }, [searchData]); const onKeyPress = e => { @@ -230,7 +228,6 @@ export const AnalysisHistoryContainer = props => { useEffect(() => { }, [params]); const handlerSearch = () => { - console.log("----",params); dispatch(Actions.list.request({ searchParams: params })); };