Skip to content

Commit

Permalink
Fixed a keyboard accessibility bug with the SelectionControlGroup
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Jun 28, 2017
1 parent b13f316 commit eb6629d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/SelectionControls/SelectionControlGroup.js
Expand Up @@ -335,7 +335,7 @@ export default class SelectionControlGroup extends PureComponent {
inline,
disabled,
checked,
tabIndex: checked && radio ? undefined : -1,
tabIndex: !radio || checked ? undefined : -1,
...control,
style,
className: cn(controlClassName, control.className),
Expand Down

0 comments on commit eb6629d

Please sign in to comment.