Skip to content

Commit

Permalink
running prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenMoring committed Mar 1, 2022
1 parent e688f0c commit 77a7f76
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/react-select/src/Select.tsx
Expand Up @@ -1558,7 +1558,9 @@ export default class Select<
'aria-autocomplete': 'list' as const,
'aria-expanded': menuIsOpen,
'aria-haspopup': true,
'aria-controls': menuIsOpen? this.getElementId('listbox') : this.getElementId('input'),
'aria-controls': menuIsOpen
? this.getElementId('listbox')
: this.getElementId('input'),
'aria-owns': this.getElementId('listbox'),
'aria-errormessage': this.props['aria-errormessage'],
'aria-invalid': this.props['aria-invalid'],
Expand Down

0 comments on commit 77a7f76

Please sign in to comment.