diff --git a/src/core/Typeahead.js b/src/core/Typeahead.js index a506469e..af447ef6 100644 --- a/src/core/Typeahead.js +++ b/src/core/Typeahead.js @@ -261,6 +261,9 @@ export function getInitialState(props: Props): TypeaheadState { } export function clearTypeahead(state: TypeaheadState, props: Props) { + if (typeof props.onInputChange === "function") { + props.onInputChange(""); + } return { ...getInitialState(props), isFocused: state.isFocused,