Skip to content

Commit 169ed49

Browse files
authored
fix(AnalyticalTable): exclude expand button from tab-chain (#5753)
Fixes #5749
1 parent 684ddfe commit 169ed49

File tree

1 file changed

+2
-0
lines changed
  • packages/main/src/components/AnalyticalTable/defaults/Column

1 file changed

+2
-0
lines changed

packages/main/src/components/AnalyticalTable/defaults/Column/Expandable.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,15 @@ export const Expandable = (props) => {
5656
>
5757
{shouldRenderButton ? (
5858
<Button
59+
tabIndex={-1}
5960
icon={row.isExpanded ? iconNavDownArrow : iconNavRightArrow}
6061
design={ButtonDesign.Transparent}
6162
onClick={rowProps.onClick}
6263
className={classNames.button}
6364
/>
6465
) : (
6566
<Icon
67+
tabIndex={-1}
6668
onClick={rowProps.onClick}
6769
interactive
6870
name={row.isExpanded ? iconNavDownArrow : iconNavRightArrow}

0 commit comments

Comments
 (0)