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 9fce541 commit 52d6cf7Copy full SHA for 52d6cf7
.changeset/stupid-olives-sleep.md
@@ -0,0 +1,5 @@
1
+---
2
+"@primer/react": patch
3
4
+
5
+fix(SelectPanel): remove hidden attribute from selection Radio
packages/react/src/ActionList/Selection.tsx
@@ -32,7 +32,7 @@ export const Selection: React.FC<React.PropsWithChildren<SelectionProps>> = ({se
32
return (
33
<VisualContainer className={className} data-component="ActionList.Selection">
34
{/* This is just a way to get the visuals from Radio, but it should be ignored in terms of accessibility */}
35
- <Radio value="unused" checked={selected} aria-hidden tabIndex={-1} hidden />
+ <Radio value="unused" checked={selected} aria-hidden tabIndex={-1} />
36
</VisualContainer>
37
)
38
}
0 commit comments