React-choose how to edit created posts

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.

+4
source share

Source: https://habr.com/ru/post/1678770/


All Articles