When I use cerebral version 4 module provider api to update state
eg.: module.merge('dimensions', dimensions)
where module has path 'app'.
In Cerbral Debugger: MUTATIONS tab shows the mutation but STATE-TREE tab has no data at path app.dimension:
app: { dimensions: { } }
But when I use state provider:
state.merge('app.dimensions', dimensions)
everything works -> STATE_TREE shows changed data right.
When I use cerebral version 4 module provider api to update state
eg.:
module.merge('dimensions', dimensions)where module has path 'app'.
In Cerbral Debugger: MUTATIONS tab shows the mutation but STATE-TREE tab has no data at path app.dimension:
app: { dimensions: { } }But when I use state provider:
state.merge('app.dimensions', dimensions)everything works -> STATE_TREE shows changed data right.