Skip to content

Commit

Permalink
Merge pull request #295 from nolanlawson/nolan/fix-tabindex
Browse files Browse the repository at this point in the history
fix: use tabIndex, not tabindex
  • Loading branch information
nolanlawson authored Mar 12, 2019
2 parents 7e207ba + 94404ad commit af29bd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/skins-dot.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default class SkinsDot extends Skins {
onClick={this.handleClick}
onKeyDown={this.handleKeyDown}
role="button"
tabindex={visible ? '0' : ''}
tabIndex={visible ? '0' : ''}
aria-hidden={!visible}
aria-pressed={opened ? !!selected : ''}
aria-haspopup={!!selected}
Expand Down

0 comments on commit af29bd1

Please sign in to comment.