leoasis/redux-immutable-state-invariant
View on GitHubDoes redux-immutable-state-invariant detect changes over Map<string, MyObject>?
Open
#28 opened on May 22, 2017
help wanted
Description
I am mutating my mapProperty from my state, and redux-immutable-state-invariant, does not inform mutation to me. Mutating state line:
state.mapRecursosIndxByCtx.set("asdf", new ZRecursoViewModel());
mapRecursosIndxByCtx property is defined as follows:
const initialState: ZAplication.ZAplicationState = { mapRecursosIndxByCtx: new Map<string, ZRecursoViewModel>() }
It works when i try to mutate another properties but mapRecursosIndxByCtx property doesn't works.
Am i right?.
Thanks in advance.