Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/table/src/TableVirtualBody.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export default class TableVirtualBody extends PureComponent {
} = this.props

// VirtualList needs a fixed height.
const { calculatedHeight } = this.state
const { calculatedHeight, isIntegerHeight } = this.state

return (
<Pane
Expand All @@ -192,7 +192,7 @@ export default class TableVirtualBody extends PureComponent {
{...props}
>
<VirtualList
height={calculatedHeight}
height={isIntegerHeight ? paneHeight : calculatedHeight}
width="100%"
estimatedItemSize={
allowAutoHeight && useAverageAutoHeightEstimation
Expand Down