From 479e9750c76ee7179609653a2a31b72152497728 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 28 Oct 2021 11:31:29 +0200 Subject: [PATCH] web/user: also search desc and publisher Signed-off-by: Jens Langhammer --- web/src/user/LibraryPage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);