I can not get the truth why the TableContainer|TableComponent
component does not update its children properly.In a store i have an array of objects,when i am trying to update object property the Table
does not update its values.If i replace whole array it is working though.
You can check this behaviour in this sandbox.
Documentation states that initiating observable array,makes items observable too.(docs)
Similar to objects, arrays can be made observable using observable.array(values?) or by passing an array to observable. This works recursively as well, so all (future) values of the array will also be observable.
Why is this happening?i am coming from redux background and i am trying to wrap my head around mobx with no much of success.