diff --git a/components/Table/Table.tsx b/components/Table/Table.tsx index 3a632c6..aa0cf1d 100644 --- a/components/Table/Table.tsx +++ b/components/Table/Table.tsx @@ -374,7 +374,7 @@ export class Table extends Component { const scrollX = scroll!.x; const width = typeof scrollX === 'boolean' && scrollX ? undefined : scrollX ? scrollX : undefined; const style = fixedTitle ? { - width, + minWidth: width, } : {}; return ( @@ -392,7 +392,7 @@ export class Table extends Component { const scrollX = scroll!.x; const width = typeof scrollX === 'boolean' && scrollX ? undefined : scrollX ? scrollX : undefined; const style = fixedTitle ? { - width, + minWidth: width, } : {}; return (