...
|
...
|
@@ -68,7 +68,7 @@ export default function sectionReducer(state = initialState, action) { |
|
|
.set('error', action.payload);
|
|
|
return nextState;
|
|
|
}
|
|
|
|
|
|
|
|
|
case SECTION_HOT_POST_REQUEST: {
|
|
|
let nextState = state.setIn(['hot', 'isFetching'], true)
|
|
|
.setIn(['hot', 'error'], null)
|
...
|
...
|
@@ -120,8 +120,7 @@ export default function sectionReducer(state = initialState, action) { |
|
|
|
|
|
case GO_TO_SECTION:
|
|
|
return state.set('id', action.payload.id)
|
|
|
.set('name', action.payload.name)
|
|
|
.set('previousScene', action.payload.previousScene);
|
|
|
.set('name', action.payload.name);
|
|
|
|
|
|
case SECTION_CLEAN:
|
|
|
return initialState;
|
...
|
...
|
|