Trigger cell onClick instead of row onClick in React Table
You can call the stopPropagation
method on the dots click event so that the event will not bubble up to the row when you click the dots.
e.stopPropagation();
You can call the stopPropagation
method on the dots click event so that the event will not bubble up to the row when you click the dots.
e.stopPropagation();