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.
The
ReactSelect
component is basically a styled wrapper of 'react-select'. That component has a disabled state, but it is using theisDisabled
prop, while the multi-select passes adisabled
prop.This means that currently the disabled state does not work; users can still interact with the multi-select when it should be disabled.