Skip to content

Commit

Permalink
fix(AnalyticalTable - useRowDisableSelection): remove title from …
Browse files Browse the repository at this point in the history
…select-all cell (#5955)

Fixes #5953
  • Loading branch information
Lukas742 authored Jun 21, 2024
1 parent cb684cd commit c731554
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const headerProps = (
selectionMode === AnalyticalTableSelectionMode.MultiSelect
) {
const style = { ...props.style, cursor: 'auto' };
return [props, { onClick: undefined, onKeyDown: undefined, style }];
return [props, { onClick: undefined, onKeyDown: undefined, title: undefined, style }];
}
return props;
};
Expand Down

0 comments on commit c731554

Please sign in to comment.