Refine statistics Teamspace display

This commit is contained in:
2026-08-05 15:34:47 +02:00
parent 84057771fe
commit 8e4f07dcf8
2 changed files with 57 additions and 127 deletions
+1 -5
View File
@@ -39,11 +39,7 @@ function formatSignedMinutes(minutes: number) {
}
function formatTeamspaceDelta(minutes: number) {
if (minutes === 0) {
return "ausgeglichen";
}
return `TS ${formatSignedMinutes(minutes)}`;
return formatSignedMinutes(minutes);
}
function StatusCard({ label, value, detail, tone }: { label: string; value: string | number; detail: string; tone?: "ok" | "warn" | "neutral" }) {