From b33562a34e3d8177c2b8453d06ee79075680b9d1 Mon Sep 17 00:00:00 2001 From: kitos Date: Wed, 3 Jun 2026 09:57:46 +0200 Subject: [PATCH] feat: add tooltip to Overall Score gauge in Executive Dashboard --- frontend/src/pages/ExecutiveDashboardPage.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/frontend/src/pages/ExecutiveDashboardPage.tsx b/frontend/src/pages/ExecutiveDashboardPage.tsx index 3294384..3ab7cbf 100644 --- a/frontend/src/pages/ExecutiveDashboardPage.tsx +++ b/frontend/src/pages/ExecutiveDashboardPage.tsx @@ -76,7 +76,15 @@ function ScoreGauge({ score, label }: { score: number; label: string }) { / 100 - {label} +
+ {label} + +
); }