diff --git a/src/public/app/services/note_autocomplete.js b/src/public/app/services/note_autocomplete.js index 5932e6177..52f0c2bc3 100644 --- a/src/public/app/services/note_autocomplete.js +++ b/src/public/app/services/note_autocomplete.js @@ -131,19 +131,6 @@ function initNoteAutocomplete($el, options) { // this is important because otherwise input will lose focus immediately and not show the results return false; }); - - // Triggers full text search when Ctrl + Enter is pressed. - $el.on('keydown', (event) => { - if (event.key === 'Enter') { - if (event.ctrlKey) { - // Prevent Ctrl + Enter from triggering autoComplete. - event.preventDefault(); - event.stopImmediatePropagation(); - const searchString = $el.val(); - appContext.triggerCommand('searchNotes', { searchString }); - } - } - }); let autocompleteOptions = {}; if (options.container) {