Fixes #93

Merged
akrdzic merged 5 commits from development into master 2019-01-08 00:35:51 +01:00
Showing only changes of commit 1c5a808a69 - Show all commits

View File

@@ -12,7 +12,8 @@ const moduleReducers = {};
moduleReducers[REQUEST_SHOP_PACKAGES] = (state, action) => {
return Object.assign({}, state, {
isLoading: action.isLoading
isLoading: action.isLoading,
shopSearch: false,
});
};
@@ -61,6 +62,7 @@ moduleReducers[RECIEVE_SHOP_PACKAGES] = (state = {}, action) => {
moduleReducers[SEARCH_SHOP_PACKAGES_REQUEST] = (state, action) => {
return Object.assign({}, state, {
shopSearch: true,
isLoading: action.isLoading
});
};