diff --git a/src/containers/analysis/history/AnalysisHistoryContainer.js b/src/containers/analysis/history/AnalysisHistoryContainer.js index 00e94e5..d2b246d 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 })); };