Skip to content

Commit c731554

Browse files
authoredJun 21, 2024
fix(AnalyticalTable - useRowDisableSelection): remove title from select-all cell (#5955)
Fixes #5953
1 parent cb684cd commit c731554

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/main/src/components/AnalyticalTable/pluginHooks/useRowDisableSelection.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const headerProps = (
2323
selectionMode === AnalyticalTableSelectionMode.MultiSelect
2424
) {
2525
const style = { ...props.style, cursor: 'auto' };
26-
return [props, { onClick: undefined, onKeyDown: undefined, style }];
26+
return [props, { onClick: undefined, onKeyDown: undefined, title: undefined, style }];
2727
}
2828
return props;
2929
};

0 commit comments

Comments
 (0)