diff --git a/src/components/dropdown/dropdown.tsx b/src/components/dropdown/dropdown.tsx index ad31f4f120e..993ba22706b 100644 --- a/src/components/dropdown/dropdown.tsx +++ b/src/components/dropdown/dropdown.tsx @@ -89,8 +89,9 @@ const Dropdown = forwardRef>( if (isValidElement>(child)) { const childProps = { ...child.props, - onClick: () => { + onClick: (event: React.MouseEvent) => { changeActive(child.key as string) + child.props.onClick?.(event) }, active: child.key === value, arrow: