Skip to content

Commit

Permalink
fix(client): "Go to note" button in note_autocomplete not working (cl…
Browse files Browse the repository at this point in the history
…oses #732)
  • Loading branch information
eliandoran committed Dec 13, 2024
1 parent ec16052 commit 0f1a987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/public/app/services/note_autocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 0f1a987

Please sign in to comment.