- client: Clear result of checking the filtering result after moving to another page

This commit is contained in:
ArtemBaskal
2020-04-07 17:21:44 +03:00
parent fe056cfaf0
commit f0b6340e4f
2 changed files with 12 additions and 2 deletions

View File

@@ -13,7 +13,11 @@ const filtering = handleActions(
return { ...state, userRules };
},
[actions.getFilteringStatusRequest]: state => ({ ...state, processingFilters: true }),
[actions.getFilteringStatusRequest]: state => ({
...state,
processingFilters: true,
check: {},
}),
[actions.getFilteringStatusFailure]: state => ({ ...state, processingFilters: false }),
[actions.getFilteringStatusSuccess]: (state, { payload }) => ({
...state,