We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f4385d commit 7f9b7e8Copy full SHA for 7f9b7e8
src/common/util/isRowClick.ts
@@ -5,5 +5,7 @@ import * as React from 'react';
5
// };
6
7
export const isRowClick = (event: React.SyntheticEvent | React.KeyboardEvent) =>
8
+ (event.target as HTMLElement).tagName === 'svg' ||
9
+ (event.target as HTMLElement).tagName === 'path' ||
10
(event.target as HTMLElement).tagName === 'DIV' ||
11
(event.target as HTMLElement).tagName === 'SPAN';
0 commit comments