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
My workaround was to remove the search box input programatically:
// Add id="msParent" to the parent div of the ReactMultiselect.constmsParent=document.getElementById('msParent');constsearchBox=msParent.getElementsByClassName('searchBox')[0];searchBox.remove();
Make sure to do this on both mount and update methods.
PD: I tried removing the "disabled" attribute and adding "readonly" but the rendering behavior didn't work properly.
No description provided.
The text was updated successfully, but these errors were encountered: