From 8ccdbdc370defc14c3907d3a24ce4941109df8c7 Mon Sep 17 00:00:00 2001 From: Jens L Date: Tue, 9 May 2023 21:12:58 +0200 Subject: [PATCH] web/user: fix empty banner on application page not showing correctly (#5555) 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 1636fe9bd..878c6248a 100644 --- a/web/src/user/LibraryPage.ts +++ b/web/src/user/LibraryPage.ts @@ -238,7 +238,7 @@ export class LibraryPage extends AKElement {
${loading( this.apps, - html`${this.filteredApps.length > 0 + html`${this.filterApps(this.filteredApps).length > 0 ? this.renderApps() : this.renderEmptyState()}`, )}