(nextProps)
| 28 | } |
| 29 | |
| 30 | componentWillReceiveProps (nextProps) { |
| 31 | if (!deepEqual(nextProps.data, this.props.data)) { |
| 32 | this.setState({ data: nextProps.data }); |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | componentDidUpdate () { |
| 37 | this.setHeaderWidth(); |
nothing calls this directly
no test coverage detected