Rodrigo Díaz
Results
1
issues of
Rodrigo Díaz
``` es6 _initFromProps () { const targetItems = this._initSpyTarget(this.props.items) ... } componentWillReceiveProps () { this._initFromProps() } ``` `this.props.items` are still the old items when calling `_initFromProps` in `componentWillReceiveProps`, so the...