fix(client): "Go to note" button in note_autocomplete not working (closes #732)

This commit is contained in:
Elian Doran 2024-12-14 01:40:20 +02:00
parent ec16052e7b
commit 0f1a98795f
No known key found for this signature in database

View File

@ -149,7 +149,7 @@ function initNoteAutocomplete($el, options) {
.addClass("input-group-text full-text-search-button bx bx-search")
.prop("title", "Full text search (Shift+Enter)");
const $goToSelectedNoteButton = $("<button>")
const $goToSelectedNoteButton = $("<a>")
.addClass("input-group-text go-to-selected-note-button bx bx-arrow-to-right");
$el.after($clearTextButton).after($showRecentNotesButton).after($fullTextSearchButton);