Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React-Table - How to remove the 'Toggle sortBy' tooltip from the column header?

In the latest version (7.5.x) of React-Table, when using the Material-UI Table components, is there a way to remove the 'Toggle sortBy' tooltip from the column header?

Two tooltips

I have a tooltip with the column header name. both tooltips appear upon hover. Take a look at this codesandbox

like image 963
Vladi Feldman Avatar asked Aug 30 '20 14:08

Vladi Feldman


2 Answers

Adding {...column.getHeaderProps(column.getSortByToggleProps({ title: undefined }))} did the trick.

Here's the updated codesandbox

like image 92
Vladi Feldman Avatar answered Oct 06 '22 01:10

Vladi Feldman


Or just overwrite the title like in:

<span {...column.getGroupByToggleProps()} title="">
like image 35
Obiwahn Avatar answered Oct 06 '22 00:10

Obiwahn