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
ensure componentWillReceiveProps event is not triggered on setState
componentWillReceiveProps can call setState
nextState shouldn't be merged into this.state until after shouldComponentUpdate is called (that is, when implementing setState, dont just assign into this.state... store that state in temporary variable and trigger cycle without componentWillReceiveProps)
make this.state public
The text was updated successfully, but these errors were encountered:
requires factoring code out of $onChanges
notes:
The text was updated successfully, but these errors were encountered: