Skip to content

Commit

Permalink
Fix scrolling in latest React versions (#483) (Fixes #482)
Browse files Browse the repository at this point in the history
Remove whitespace react element in `FixedDataBufferedRows`

See #483 on why this fixes scrolling in latest versions of React.
  • Loading branch information
pradeepnschrodinger committed Sep 18, 2019
1 parent 115f57f commit bd81756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FixedDataTableBufferedRows.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class FixedDataTableBufferedRows extends React.Component {
});
}

return <div> {this._staticRowArray} </div>;
return <div>{this._staticRowArray}</div>;
}

/**
Expand Down

0 comments on commit bd81756

Please sign in to comment.