Skip to content

Commit 8e8e1d6

Browse files
authored
IBX-9761: [RTC] Search results are displayed after typing 4 characters (#1519)
1 parent 7880dea commit 8e8e1d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bundle/Resources/public/js/scripts/core/suggestion.taggify.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ import { getRestInfo } from '@ibexa-admin-ui/src/bundle/Resources/public/js/scri
120120
return;
121121
}
122122

123-
if (this.inputNode.value.length > MIN_QUERY_LENGTH) {
123+
if (this.inputNode.value.length >= MIN_QUERY_LENGTH) {
124124
this.getSuggestions(this.inputNode.value);
125125
}
126126
}

0 commit comments

Comments
 (0)