diff --git a/src/components/basis/group/BasisGroupApprovalGrid.js b/src/components/basis/group/BasisGroupApprovalGrid.js index 5ed4c34..ba5db49 100644 --- a/src/components/basis/group/BasisGroupApprovalGrid.js +++ b/src/components/basis/group/BasisGroupApprovalGrid.js @@ -1,28 +1,8 @@ import { GridDatabase } from '../../crud/grid/GridDatatable'; -import { - Row, - Col, - Table, - Badge, - UncontrolledDropdown, - DropdownMenu, - DropdownItem, - DropdownToggle, - Card, - CardHeader, - CardBody, - CardTitle, - CardSubtitle, - ButtonGroup, - Button, - Input, - CustomInput, - FormGroup -} from 'reactstrap'; +import { Card } from 'reactstrap'; import { ExcelExportButton } from '../../crud/excel/ExcelExportButton'; export const BasisGroupApprovalGrid = props => { - return ( //
// @@ -31,7 +11,7 @@ export const BasisGroupApprovalGrid = props => {

{props.title} 목록

- 검색결과 총 {props.count}건 + 검색결과 총 {props.total}건
diff --git a/src/modules/analysis/history/reducers/analysisHitoryReducer.ts b/src/modules/analysis/history/reducers/analysisHitoryReducer.ts index 3f8a4f1..8bce08b 100644 --- a/src/modules/analysis/history/reducers/analysisHitoryReducer.ts +++ b/src/modules/analysis/history/reducers/analysisHitoryReducer.ts @@ -29,7 +29,7 @@ export const analysisHistoryReducer = createReducer< .handleAction(Actions.list.success, (state, action) => produce(state, draft => { const { data, count, total } = action.payload; - console.log(data); + draft.data = data; draft.count = count; draft.total = total; diff --git a/src/modules/basis/group/reducers/basisGroupReducer.ts b/src/modules/basis/group/reducers/basisGroupReducer.ts index 3182a9c..77d1537 100644 --- a/src/modules/basis/group/reducers/basisGroupReducer.ts +++ b/src/modules/basis/group/reducers/basisGroupReducer.ts @@ -90,7 +90,7 @@ export const groupReducer = createReducer( draft.aprvList = data; draft.count = count; - draft.aprvCount = total; + draft.total = total; }) ) .handleAction(Actions.USER_LIST.success, (state, action) =>