Skip to content

Commit a52dc81

Browse files
committed
swap order of style declaration
1 parent 5f51931 commit a52dc81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/module/src/DataViewTh/DataViewTh.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ export const DataViewTh: FC<DataViewThProps> = ({
338338
{...thProps}
339339
{...props}
340340
ref={thRef}
341-
style={width > 0 ? { minWidth: width, ...thProps?.style } : thProps?.style}
341+
style={width > 0 ? { ...thProps?.style, minWidth: width } : thProps?.style}
342342
className={classNames.length > 0 ? classNames.join(' ') : undefined}
343343
{...(isResizable && { additionalContent: resizableContent })}
344344
>

0 commit comments

Comments
 (0)