Zaydme / strapi-plugin-multi-select

A strapi custom field for a multi select input.
https://www.npmjs.com/package/strapi-plugin-multi-select
MIT License
40 stars 21 forks source link

Use proper isDisabled prop for disabled state #29

Closed WDeenik closed 1 month ago

WDeenik commented 7 months ago

The ReactSelect component is basically a styled wrapper of 'react-select'. That component has a disabled state, but it is using the isDisabled prop, while the multi-select passes a disabled prop.

This means that currently the disabled state does not work; users can still interact with the multi-select when it should be disabled.

Zaydme commented 1 month ago

Seems to be already added in https://github.com/Zaydme/strapi-plugin-multi-select/commit/d6e527919aa13055f3afcc0f53a0fff1c696f8dd

Thank you!