diff --git a/packages/core/src/api/lookup.ts b/packages/core/src/api/lookup.ts index 161950268..2a6a37917 100644 --- a/packages/core/src/api/lookup.ts +++ b/packages/core/src/api/lookup.ts @@ -41,6 +41,7 @@ import { fuzzy } from "../utils/fuzzy.js"; import { extractMatchingBlocks } from "../utils/html-parser.js"; import { findOrAdd } from "../utils/array.js"; import { Parser } from "htmlparser2"; +import { strings } from "@notesnook/intl"; type SearchResults = { sorted: (sortOptions?: SortOptions) => Promise>; @@ -277,7 +278,21 @@ export default class Lookup { ids: results.map((c) => c.id), items: results }; - } + }, + () => + new Map([ + [ + 0, + { + index: 0, + group: { + id: "0", + title: strings.results(matches.ids.length), + type: "header" + } + } + ] + ]) ); }