You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upon passing your own method in props for filterOptions to also show selected options in Dropdown for MultiSelect box, the class is-selected doesn't gets added to the option elements.
Following line in buildMenu() looks to be rogue which could be fixed.
varisSelected=this.state.value===op.value;
The value in state is a comma-separted string of values here, which will always fail this check.
The text was updated successfully, but these errors were encountered:
Closing this issue, if for some reason you feel that what I've described above doesn't correctly address your problem, please feel free to create a new issue. Mostly doing this for clarity ad to reduce our issues list down to a sane and relevant number of actionable tasks.
Upon passing your own method in props for
filterOptions
to also show selected options in Dropdown for MultiSelect box, the classis-selected
doesn't gets added to the option elements.Following line in
buildMenu()
looks to be rogue which could be fixed.The value in
state
is a comma-separted string of values here, which will always fail this check.The text was updated successfully, but these errors were encountered: