We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2b2305 commit 3120c39Copy full SHA for 3120c39
src/ComboboxInput/ComboboxInput.js
@@ -76,7 +76,7 @@ const ComboboxInput = React.forwardRef(({
76
if (textInputRef?.current) {
77
textInputRef.current.value = preSelectedOption?.text || '';
78
}
79
- } else if (typedValue) {
+ } else if (typeof typedValue === 'string') {
80
setFilterString(typedValue);
81
82
textInputRef.current.value = typedValue;
0 commit comments