diff --git a/client/components/routeservers/routes/reducer.jsx b/client/components/routeservers/routes/reducer.jsx index 523e174..2e97b89 100644 --- a/client/components/routeservers/routes/reducer.jsx +++ b/client/components/routeservers/routes/reducer.jsx @@ -3,26 +3,25 @@ const LOCATION_CHANGE = '@@router/LOCATION_CHANGE' const initialState = { - received: [], - filtered: [], - notExported: [], + received: [], + receivedLoading: false, receivedPage: 0, receivedTotalPages: 0, receivedTotalResults: 0, + filtered: [], + filteredLoading: false, filteredPage: 0, filteredTotalPages: 0, filteredTotalResults: 0, + notExported: [], + notExportedLoading: false, notExportedPage: 0, notExportedTotalPages: 0, notExportedTotalResults: 0, - receivedLoading: false, - filteredLoading: false, - notExportedLoading: false, - filterQuery: "", } diff --git a/client/reducer/app-reducer.jsx b/client/reducer/app-reducer.jsx index ca4e25f..0ab25a7 100644 --- a/client/reducer/app-reducer.jsx +++ b/client/reducer/app-reducer.jsx @@ -24,8 +24,12 @@ import contentReducer import lookupReducer from 'components/lookup/reducer' +import routesReducer + from 'components/routeservers/routes/reducer' + export default combineReducers({ routeservers: routeserversReducer, + routes: routesReducer, modals: modalsReducer, routing: routerReducer, lookup: lookupReducer,