Browse Source

비행이력 현황 검색옵션 수정

feature/auth
kimjh(김장현) 2 years ago
parent
commit
dd349bdf85
  1. 8
      src/components/crud/grid/GridDatatable.js
  2. 5
      src/containers/analysis/history/AnalysisHistoryContainer.js

8
src/components/crud/grid/GridDatatable.js

@ -43,7 +43,13 @@ export const GridDatabase = props => {
}} }}
progressPending={props.handlerPageChange ? loading : false} progressPending={props.handlerPageChange ? loading : false}
progressComponent={ progressComponent={
<div style={{ width: '100%', height: '504px' }}> <div
style={{
width: '100%',
height: '504px',
backgroundColor: 'rgba(35, 41, 58, 0.7)'
}}
>
<div className='grid-loading'> <div className='grid-loading'>
<div> <div>
<Spinner color='primary' /> <Spinner color='primary' />

5
src/containers/analysis/history/AnalysisHistoryContainer.js

@ -256,7 +256,10 @@ export const AnalysisHistoryContainer = props => {
desc: '그룹 선택 해주세요.', desc: '그룹 선택 해주세요.',
color: 'modal-danger' color: 'modal-danger'
}); });
} else dispatch(Actions.list.request({ searchParams: params, page: 1 })); } else {
dispatch(Actions.LIST_INITAL());
dispatch(Actions.list.request({ searchParams: params, page: 1 }));
}
}; };
const handlerInput = (type, val) => { const handlerInput = (type, val) => {

Loading…
Cancel
Save