(nextProps)
| 33 | } |
| 34 | |
| 35 | componentWillReceiveProps (nextProps) { |
| 36 | if (!deepEqual(nextProps.value, this.props.value)) { |
| 37 | this.setValue(nextProps.value); |
| 38 | } |
| 39 | if (!deepEqual(nextProps.data, this.props.data)) { |
| 40 | this.setState({ data: this.formatData(nextProps.data) }); |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | componentWillUnmount () { |
| 45 | super.componentWillUnmount(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…