From b3deb87df5235bb3af1ea1c34f470237930f841b Mon Sep 17 00:00:00 2001 From: Tomas Dvorak Date: Fri, 30 May 2025 09:28:33 +0200 Subject: [PATCH] fe --- admin-dashboard.html | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/admin-dashboard.html b/admin-dashboard.html index e150a45..6865fb3 100644 --- a/admin-dashboard.html +++ b/admin-dashboard.html @@ -1498,11 +1498,9 @@ async function loadDynamicApps() { return; } - // Filter out hardcoded apps and map to HTML - const dynamicApps = apps - .filter(app => !app.id || !app.id.startsWith('hardcoded-')) - .map(app => ` -
+ // Map all apps to HTML, including hardcoded ones + const dynamicApps = apps.map(app => ` +
${app.icon ? `${app.name}` :