You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When Owner state is updated, the render function is called on Owner, Parent and Child.
When Parent state is updated, the render function of Parent is called, but not on the Child.
This was the expected behavior till 0.13.x, but with #2112 introduced a behavior where Parent state update can change the return of getChildContext and hence the Child needs an update.
Owner state update, renders both Parent and Child
Parent state update renders only the Parent
The text was updated successfully, but these errors were encountered:
rrag
changed the title
State update of Parent (not Owner) does not render the children
State update of Parent (not Owner) does not render the children - 0.14
May 31, 2015
say
When Owner state is updated, the
render
function is called on Owner, Parent and Child.When Parent state is updated, the
render
function of Parent is called, but not on the Child.This was the expected behavior till 0.13.x, but with #2112 introduced a behavior where Parent state update can change the return of
getChildContext
and hence the Child needs an update.jsbin explaining the problem.
Owner state update, renders both Parent and Child
Parent state update renders only the Parent
The text was updated successfully, but these errors were encountered: