From 002839176ebab68a4915e1549a2c46e796f194ef Mon Sep 17 00:00:00 2001 From: SiriusXT <1160925501@qq.com> Date: Sun, 17 Nov 2024 12:18:05 +0800 Subject: [PATCH] Triggers full text search when Ctrl + Enter is pressed --- src/public/app/services/note_autocomplete.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/app/services/note_autocomplete.js b/src/public/app/services/note_autocomplete.js index 52f0c2bc3..dbee214b7 100644 --- a/src/public/app/services/note_autocomplete.js +++ b/src/public/app/services/note_autocomplete.js @@ -131,7 +131,7 @@ function initNoteAutocomplete($el, options) { // this is important because otherwise input will lose focus immediately and not show the results return false; }); - + let autocompleteOptions = {}; if (options.container) { autocompleteOptions.dropdownMenuContainer = options.container;