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 }) {

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