isOpen is getting true from the first charecter itself when we set min minSearchLength to 2 or more. this flag is setting to true even when the dropdown list is hidden.
This is caused because the trigger for open is any that a key was pressed, the check for minSearchLength is done at a later stage. Open state is being checked to perform search so it's not trivial to fix this bug.
isOpen is getting true from the first charecter itself when we set min minSearchLength to 2 or more. this flag is setting to true even when the dropdown list is hidden.