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 531bcf1 commit 2709624Copy full SHA for 2709624
1 file changed
packages/components/table/BaseTable.tsx
@@ -83,7 +83,7 @@ const BaseTable = forwardRef<BaseTableRef, BaseTableProps>((originalProps, ref)
83
const headerTopAffixRef = useRef<AffixRef>(null);
84
const footerBottomAffixRef = useRef<AffixRef>(null);
85
86
- const [supportMinWidth, setSupportMinWidth] = useState(() => !isFirefox() && !isSafari());
+ const [supportMinWidth, setSupportMinWidth] = useState(true);
87
88
// 1. 表头吸顶;2. 表尾吸底;3. 底部滚动条吸底;4. 分页器吸底
89
const {
0 commit comments