Skip to content

Commit

Permalink
IBX-6413: Fixed minQueryLength test to stick to parameter's meaning (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
adriendupuis committed Nov 20, 2023
1 parent 6717148 commit b77c108
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@

searchAbortController?.abort();

if (searchText.length <= minQueryLength) {
if (searchText.length < minQueryLength) {
hideAutocomplete();

return;
Expand Down

0 comments on commit b77c108

Please sign in to comment.