Skip to content

Commit a0d2d79

Browse files
authoredFeb 8, 2024
Merge pull request #342 from droberts-ctrlo/typeahead-speed-fix
Typeahead code fixes
2 parents 0c5af24 + a466f42 commit a0d2d79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/frontend/js/lib/util/typeahead/lib/Typeahead.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export class Typeahead {
3838
if (this.timeout) clearTimeout(this.timeout);
3939
this.timeout = setTimeout(() => {
4040
const request: JQuery.AjaxSettings<any> = {
41-
url: ajaxSource + (appendQuery ? "?q=" + query : ""),
41+
url: ajaxSource + (appendQuery ? query : ""),
4242
dataType: "json",
4343
beforeSend: () => {
4444
this.ajaxRequest && this.ajaxRequest.abort();

0 commit comments

Comments
 (0)
Please sign in to comment.