Skip to content

Commit

Permalink
fix: table scrollbar not hidden in windows
Browse files Browse the repository at this point in the history
  • Loading branch information
tangjinzhou committed Apr 23, 2021
1 parent 1fb6521 commit 6d33d60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/vc-table/src/BodyTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default {
const innerBodyStyle = {};

if (scroll.x || fixed) {
bodyStyle.overflowX = bodyStyle.overflowX || 'scroll';
bodyStyle.overflowX = bodyStyle.overflowX || 'auto';
// Fix weired webkit render bug
// https://github.com/ant-design/ant-design/issues/7783
bodyStyle.WebkitTransform = 'translate3d (0, 0, 0)';
Expand Down

0 comments on commit 6d33d60

Please sign in to comment.