(nextProps)
| 28 | } |
| 29 | |
| 30 | componentWillReceiveProps(nextProps) { |
| 31 | let value = nextProps.value; |
| 32 | if (value !== this.props.value && value !== this.state.value) { |
| 33 | this.setState({ value }); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | handleChange (event){ |
| 38 | this.props.autoHeight && this.autoHeight(); |
nothing calls this directly
no outgoing calls
no test coverage detected