Closed Rashe closed 1 year ago
I think you might be able to do this yourself by reacting to input blur:
<MultiSelect
query={...}
tagInputProps={{
inputProps: {
onBlur: () => { ... }
}
}}
/>
@adidahiya yea, I made something similar, but there will be an issue with selecting item in results list with mouse.
@Rashe what issue exactly? Can you reproduce it using a code sandbox?
Question
For now the query stays as is if I don't select any value from results. Any way to reset the query string on focus out?
Thx