()
| 38 | } |
| 39 | |
| 40 | componentDidMount() { |
| 41 | this.el = this.table.el; |
| 42 | |
| 43 | this.scheduleLayout(); |
| 44 | addResizeListener(this.el, this.resizeListener) |
| 45 | } |
| 46 | |
| 47 | componentWillReceiveProps(nextProps: TableLayoutProps) { |
| 48 | const preHeight = this.props.height || this.props.maxHeight; |
nothing calls this directly
no test coverage detected