diff --git a/src/services/autocomplete.js b/src/services/autocomplete.js index 667e8ff3a..95ef24eea 100644 --- a/src/services/autocomplete.js +++ b/src/services/autocomplete.js @@ -59,6 +59,10 @@ function getResults(query) { } for (const parentNoteId of parents) { + if (hideInAutocomplete[parentNoteId]) { + continue; + } + const title = getNoteTitle(noteId, parentNoteId).toLowerCase(); const foundTokens = []; @@ -110,6 +114,7 @@ function search(noteId, tokens, path, results) { if (parentNoteId === 'root' || hideInAutocomplete[parentNoteId]) { continue; } + const title = getNoteTitle(noteId, parentNoteId); const foundTokens = [];