Skip to content

Commit

Permalink
Table a11y fix (#1505)
Browse files Browse the repository at this point in the history
  • Loading branch information
xman343 authored Aug 21, 2023
1 parent ccb3040 commit 1ca0a6a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/stale-bees-turn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@itwin/itwinui-react': patch
---

Gave accessible label to the sub-row toggle in <Table>.
2 changes: 2 additions & 0 deletions packages/itwinui-react/src/core/Table/SubRowExpander.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ export const SubRowExpander = <T extends Record<string, unknown>>(
expanderCell(cellProps)
) : (
<IconButton
aria-label='Toggle sub row'
aria-expanded={cell.row.isExpanded ? 'true' : 'false'}
style={{
marginInlineEnd:
density === 'default' || density === undefined ? 8 : 4,
Expand Down

0 comments on commit 1ca0a6a

Please sign in to comment.