Skip to content

Commit 5be03be

Browse files
committed
[Fix]: column width adjusted by user
1 parent 3eca6dc commit 5be03be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/packages/lowcoder/src/comps/comps/tableComp/ResizeableTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const ResizeableTitle = React.forwardRef<HTMLTableHeaderCellElement, any>((props
6565
React.useImperativeHandle(ref, () => resizeRef.current!, []);
6666

6767
const isNotDataColumn = _.isNil(restProps.title);
68-
if ((isUserViewMode && !restProps.viewModeResizable) || isNotDataColumn) {
68+
if ((isUserViewMode && !viewModeResizable) || isNotDataColumn) {
6969
return <TableTh ref={resizeRef} {...restProps} width={width} />;
7070
}
7171

0 commit comments

Comments
 (0)