diff --git a/components/lib/autocomplete/AutoComplete.js b/components/lib/autocomplete/AutoComplete.js index 5bc7112b3d..496f84f3eb 100644 --- a/components/lib/autocomplete/AutoComplete.js +++ b/components/lib/autocomplete/AutoComplete.js @@ -107,6 +107,10 @@ export const AutoComplete = React.memo(React.forwardRef((props, ref) => { } const updateModel = (event, value) => { + // #2176 only call change if value actually changed + if (selectedItem && selectedItem.current === value) { + return; + } if (props.onChange) { props.onChange({ originalEvent: event,