Skip to content

Commit

Permalink
fix(inputs): update combobox dropdown list listbox
Browse files Browse the repository at this point in the history
  • Loading branch information
hebernardEquisoft committed Mar 25, 2024
1 parent 741e6dc commit d1b1bb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/react/src/components/combobox/combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ export const Combobox: VoidFunctionComponent<ComboboxProps> = ({

{open && (
<StyledListbox
ariaLabelledBy={`${fieldId}_label`}
ariaLabelledBy={processedLabels.ariaLabelledBy}
ref={listboxRef}
data-testid="listbox"
focusable={false}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ export const DropdownList: VoidFunctionComponent<DropdownListProps> = ({

{open && (
<StyledListbox
ariaLabelledBy={`${fieldId}_label`}
ariaLabelledBy={processedLabels.ariaLabelledBy}
ref={listboxRef}
data-testid="listbox"
focusable={false}
Expand Down

0 comments on commit d1b1bb3

Please sign in to comment.