Skip to content

Commit

Permalink
Addressed the issue in metadata table (#3655)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkakar authored Dec 19, 2024
1 parent bea316c commit d0c2d9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG-scrolling-accessibility-issue
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Addressed accessibility issue to ensure elements with scrollable content are accessible by keyboard.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ interface MetadataTableRow {
function MetadataTable({ tableRows = [] as MetadataTableRow[], columns = defaultColumns }) {
return (
<Paper sx={{ width: '100%' }}>
<StyledTableContainer>
<StyledTableContainer tabIndex={0} role="region" aria-label="Scrollable table container for Metadata">
<Table stickyHeader>
<TableHead>
<TableRow>
Expand Down

0 comments on commit d0c2d9f

Please sign in to comment.