Skip to content

Commit

Permalink
fix: add aria-multiselectable on mulitple select component
Browse files Browse the repository at this point in the history
Co-authored-by: AsiwajuDev <[email protected]>
  • Loading branch information
gitstart and AsiwajuDev committed Sep 7, 2023
1 parent 76a3521 commit 4b1e1e3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/mui-material/src/Select/SelectInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -549,6 +549,7 @@ const SelectInput = React.forwardRef(function SelectInput(props, ref) {
MenuListProps={{
'aria-labelledby': labelId,
role: 'listbox',
'aria-multiselectable': multiple ? 'true' : undefined,
disableListWrap: true,
...MenuProps.MenuListProps,
}}
Expand Down

0 comments on commit 4b1e1e3

Please sign in to comment.