ngrx-normalizr
ngrx-normalizr copied to clipboard
RemoveData while using ngrx-store-freeze
Hi, we are using ngrx-store-freeze to keep our state from mutating accidentally. While active the following line in the REMOVE_DATA reducer throws an error: delete entities_3[key][id];
. I think what happens is __assign({}, state.entities)
assigns all the entity keys and the entity dictionaries are still frozen. One would probably have to use an approach similar to lodashs .omit(entities[key], [id]).
I see, thanks for this one. Will have a look at it.
Hi, we also have the same problem, is there any plans to fix this bug in the near future?
The same bug applies, when calling AddChildData
Hi, same problem here. Is this project still alive?