I am using Select.AsyncCreatable:
<Select.AsyncCreatable
clearableValue={true}
multi={true}
scrollMenuIntoView={true}
name="field-name"
value={values}
loadOptions={this.getOptions}
onChange={value => {
this.handleOnChange(value...)
}}
placeholder={this.defaultPlaceholder}
/>
How to edit the parameters that I created. I can delete the created parameters and re-enter them, but is it possible to edit the selected values? It would be more comfortable.
source
share