Update condition for falsy values in Single autocomplete select field
This commit is contained in:
parent
1bfc13c8b5
commit
6c74ae5591
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ const SingleAutocompleteSelectFieldComponent: React.FC<SingleAutocompleteSelectF
|
|||
};
|
||||
|
||||
// fix for bug where input value is returned from debounce as id instead of label
|
||||
if (value === inputValue && inputValue !== "") {
|
||||
if (value === inputValue && !!inputValue) {
|
||||
ensureProperValues();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue