Hi,
On the multiselect component is there a way to add a custom value the
same way you do by pressing enter by pressing tab? Failing that, is
there a way to clear the input on blur?
Here is the code I have
<MultiSelect data={filteredTitles} textField="text" onFilterChange={onFilterChange} filterable={true} onChange={(e) => setTitles(e.target.value)} tagRender={tagRender} allowCustom={true} placeholder="e.g. test..." popupSettings={{ height: 500 }} autoClose={false} listNoDataRender={() => <div></div>}/>
Thanks
