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 684ddfe commit 169ed49Copy full SHA for 169ed49
packages/main/src/components/AnalyticalTable/defaults/Column/Expandable.tsx
@@ -56,13 +56,15 @@ export const Expandable = (props) => {
56
>
57
{shouldRenderButton ? (
58
<Button
59
+ tabIndex={-1}
60
icon={row.isExpanded ? iconNavDownArrow : iconNavRightArrow}
61
design={ButtonDesign.Transparent}
62
onClick={rowProps.onClick}
63
className={classNames.button}
64
/>
65
) : (
66
<Icon
67
68
69
interactive
70
name={row.isExpanded ? iconNavDownArrow : iconNavRightArrow}
0 commit comments