diff --git a/components/lib/dropdown/Dropdown.js b/components/lib/dropdown/Dropdown.js index 587eae7c65..1d98fb1703 100644 --- a/components/lib/dropdown/Dropdown.js +++ b/components/lib/dropdown/Dropdown.js @@ -170,9 +170,11 @@ export const Dropdown = React.memo( }; const onOptionSelect = (event, option, isHide = true) => { + const value = getOptionValue(option); + selectItem({ originalEvent: event, - option + option: value }); isHide && hide(true);