Fix item cache being deleted on fetch.

master
Tom Hacohen 4 years ago
parent 5c077ddc0e
commit b434fc829a

@ -155,7 +155,9 @@ export const items = handleActions(
}, },
[actions.setCacheCollection.toString()]: (state: CacheItemsData, action: ActionMeta<CacheCollection, { colUid: string }>) => { [actions.setCacheCollection.toString()]: (state: CacheItemsData, action: ActionMeta<CacheCollection, { colUid: string }>) => {
if (action.payload !== undefined) { if (action.payload !== undefined) {
return state.set(action.meta.colUid, ImmutableMap()); if (!state.has(action.meta.colUid)) {
return state.set(action.meta.colUid, ImmutableMap());
}
} }
return state; return state;
}, },

Loading…
Cancel
Save