Merge pull request #6396 from tchak/fix-empty-commune-select
fix(combo-search): can input empty value
This commit is contained in:
commit
d67778a636
1 changed files with 3 additions and 0 deletions
|
@ -83,6 +83,9 @@ function ComboSearch({
|
|||
setExternalId('');
|
||||
setExternalValue(value);
|
||||
}
|
||||
} else if (!value) {
|
||||
setExternalId('');
|
||||
setExternalValue('');
|
||||
}
|
||||
},
|
||||
[minimumInputLength]
|
||||
|
|
Loading…
Reference in a new issue