diff --git a/src/core/Form/Select/SingleSelect/SingleSelect.tsx b/src/core/Form/Select/SingleSelect/SingleSelect.tsx index 563aa52cb..4273b5f36 100644 --- a/src/core/Form/Select/SingleSelect/SingleSelect.tsx +++ b/src/core/Form/Select/SingleSelect/SingleSelect.tsx @@ -264,7 +264,9 @@ class BaseSingleSelect extends Component< ); if (matchingItem) { resolvedInputValue = - matchingItem.labelText || prevState.filterInputValue; + matchingItem.labelText && !prevState.filterMode + ? matchingItem.labelText + : prevState.filterInputValue; } }