diff --git a/web/src/user/LibraryPage.ts b/web/src/user/LibraryPage.ts index 1b53565b6..c809b471c 100644 --- a/web/src/user/LibraryPage.ts +++ b/web/src/user/LibraryPage.ts @@ -40,7 +40,7 @@ export class LibraryPage extends LitElement { new CoreApi(DEFAULT_CONFIG).coreApplicationsList({}).then((apps) => { this.apps = apps; this.fuse = new Fuse(apps.results, { - keys: ["slug", "name"], + keys: ["slug", "name", "metaDescription", "metaPublisher"], }); if (!this.fuse || !this.query) return; const matchingApps = this.fuse.search(this.query);