(rowIndex = 0, shouldForceUpdate)
| 28 | } |
| 29 | |
| 30 | resetAfterRowIndex(rowIndex = 0, shouldForceUpdate) { |
| 31 | if (!this.props.estimatedRowHeight) return; |
| 32 | this.bodyRef && this.bodyRef.resetAfterRowIndex(rowIndex, shouldForceUpdate); |
| 33 | } |
| 34 | |
| 35 | forceUpdateTable() { |
| 36 | this.headerRef && this.headerRef.forceUpdate(); |
nothing calls this directly
no test coverage detected