Skip to content

Commit 2709624

Browse files
committed
chore: simplify
1 parent 531bcf1 commit 2709624

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/components/table/BaseTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const BaseTable = forwardRef<BaseTableRef, BaseTableProps>((originalProps, ref)
8383
const headerTopAffixRef = useRef<AffixRef>(null);
8484
const footerBottomAffixRef = useRef<AffixRef>(null);
8585

86-
const [supportMinWidth, setSupportMinWidth] = useState(() => !isFirefox() && !isSafari());
86+
const [supportMinWidth, setSupportMinWidth] = useState(true);
8787

8888
// 1. 表头吸顶;2. 表尾吸底;3. 底部滚动条吸底;4. 分页器吸底
8989
const {

0 commit comments

Comments
 (0)