Skip to content

Commit

Permalink
Fix: remove check 'invalid' for open dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
fabienwnklr committed Oct 5, 2022
1 parent 40af370 commit 0be6036
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/selectize.js
Original file line number Diff line number Diff line change
Expand Up @@ -1891,8 +1891,7 @@ $.extend(Selectize.prototype, {
if (
self.isLocked ||
self.isOpen ||
(self.settings.mode === "multi" && self.isFull()) ||
self.$control_input.is(":invalid")
(self.settings.mode === "multi" && self.isFull())
)
return;
self.focus();
Expand Down

0 comments on commit 0be6036

Please sign in to comment.