We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04de08d commit a294803Copy full SHA for a294803
src/HeadTable.tsx
@@ -29,6 +29,8 @@ export default function HeadTable(props: HeadTableProps, { table }) {
29
if (scrollbarWidthOfHeader > 0 && !fixed) {
30
headStyle.marginBottom = `-${scrollbarWidthOfHeader}px`;
31
headStyle.paddingBottom = '0px';
32
+ // https://github.com/ant-design/ant-design/pull/19986
33
+ headStyle.minWidth = `${scrollbarWidthOfHeader}px`;
34
// https://github.com/ant-design/ant-design/issues/17051
35
headStyle.overflowX = 'scroll';
36
headStyle.overflowY = scrollbarWidth === 0 ? 'hidden' : 'scroll';
0 commit comments