diff --git a/design-system/packages/ui/src/components/Listbox/Listbox.tsx b/design-system/packages/ui/src/components/Listbox/Listbox.tsx index 3732f58337..c9ff848abd 100644 --- a/design-system/packages/ui/src/components/Listbox/Listbox.tsx +++ b/design-system/packages/ui/src/components/Listbox/Listbox.tsx @@ -215,6 +215,7 @@ export const ListboxOption = forwardRef( metadata, selected = false, tabIndex = -1, + title, value, ...props }, ref) { @@ -234,6 +235,7 @@ export const ListboxOption = forwardRef( ref={ref} role="option" tabIndex={tabIndex} + title={title} type="button" > {leading !== undefined && leading !== null && ( @@ -242,7 +244,7 @@ export const ListboxOption = forwardRef( )} - {children} + {children} {description !== undefined && description !== null && ( {description} @@ -250,7 +252,7 @@ export const ListboxOption = forwardRef( )} {metadata !== undefined && metadata !== null && ( - {metadata} + {metadata} )}