Skip to content

Commit 55bd8f5

Browse files
hide default tooltip from table header
1 parent 1734118 commit 55bd8f5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ const ResizeableTitle = (props: any) => {
493493
/>
494494
)}
495495
>
496-
<TableTh ref={elementRef} {...restProps} />
496+
<TableTh ref={elementRef} {...restProps} title="" />
497497
</Resizable>
498498
);
499499
};

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,7 @@ export function columnsToAntdFormat(
398398
? {
399399
sorter: true,
400400
sortOrder: sortMap.get(column.dataIndex),
401+
showSorterTooltip: false,
401402
}
402403
: {}),
403404
};

0 commit comments

Comments
 (0)