From d9610d2be4eca7dc068c16a34a53d45f1657baaa Mon Sep 17 00:00:00 2001 From: Manus Date: Thu, 20 Aug 2026 16:33:07 +0200 Subject: [PATCH] feat(dashboard): distinguer visuellement les apps INFRA dans le tableau de bord --- src/frontend/src/pages/DashboardPage.jsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/frontend/src/pages/DashboardPage.jsx b/src/frontend/src/pages/DashboardPage.jsx index f5a9684..7f9752d 100644 --- a/src/frontend/src/pages/DashboardPage.jsx +++ b/src/frontend/src/pages/DashboardPage.jsx @@ -147,10 +147,12 @@ export default function DashboardPage({ apps }) {

Aucune application détectée

) : (
- {apps.map((app) => ( + {apps.map((app) => { + const isInfra = app.category === "INFRA" || ["portail-santinova", "manus-dashboard"].includes(app.id); + return (
-

+ {isInfra && ( + + ⚙ Infra + + )} +

{app.name}

@@ -180,7 +187,8 @@ export default function DashboardPage({ apps }) {

- ))} + ); + })}
)}