Skip to content

Commit 082d1c0

Browse files
authoredAug 5, 2024··
fix(AnalyticalTable): add aria-hidden to multi selection checkboxes (#6134)
fixes #6133
1 parent e2e82a6 commit 082d1c0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎packages/main/src/components/AnalyticalTable/hooks/useRowSelectionColumn.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ const Header = (instance) => {
3030
tabIndex={-1}
3131
onChange={undefined}
3232
checked={checkBoxProps.indeterminate ? true : checkBoxProps.checked}
33+
aria-hidden="true"
3334
/>
3435
);
3536
};
@@ -43,6 +44,7 @@ const Cell = ({ row, webComponentsReactProperties: { selectionMode } }) => {
4344
<CheckBox
4445
{...row.getToggleRowSelectedProps()}
4546
tabIndex={-1}
47+
aria-hidden="true"
4648
style={customCheckBoxStyling}
4749
data-name="internal_selection_column"
4850
/>

0 commit comments

Comments
 (0)
Please sign in to comment.