File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/react/src/components/MultiSelect Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -398,9 +398,9 @@ export default class FilterableMultiSelect extends React.Component {
398
398
aria-controls = { `${ id } __menu` }
399
399
aria-autocomplete = "list"
400
400
ref = { ( el ) => ( this . inputNode = el ) }
401
+ id = { `${ id } -input` }
401
402
{ ...getInputProps ( {
402
403
disabled,
403
- id,
404
404
placeholder,
405
405
onKeyDown : this . handleOnInputKeyDown ,
406
406
} ) }
@@ -423,7 +423,7 @@ export default class FilterableMultiSelect extends React.Component {
423
423
</ ListBox . Field >
424
424
{ isOpen && (
425
425
< ListBox . Menu
426
- role = "group "
426
+ role = "listbox "
427
427
aria-label = { ariaLabel }
428
428
id = { `${ id } -menu` } >
429
429
{ sortItems (
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ exports[`MultiSelect.Filterable should render 1`] = `
133
133
autoComplete = " off"
134
134
className = " bx--text-input bx--text-input--empty"
135
135
disabled = { false }
136
- id = " test-filterable-multiselect"
136
+ id = " test-filterable-multiselect-input "
137
137
onBlur = { [Function ]}
138
138
onChange = { [Function ]}
139
139
onKeyDown = { [Function ]}
You can’t perform that action at this time.
0 commit comments