From 8c8492ad00842e7222c66bf68d24c00de33e4cbf Mon Sep 17 00:00:00 2001 From: Bastian Wagner Date: Fri, 19 Jun 2026 17:35:21 +0200 Subject: [PATCH] ff --- client/src/app/running/running-kpi-dashboard.component.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/src/app/running/running-kpi-dashboard.component.ts b/client/src/app/running/running-kpi-dashboard.component.ts index 8cd4353..3bfb320 100644 --- a/client/src/app/running/running-kpi-dashboard.component.ts +++ b/client/src/app/running/running-kpi-dashboard.component.ts @@ -95,6 +95,10 @@ export class RunningKpiDashboardComponent implements OnInit, OnDestroy { return value === null || value === undefined ? '-' : value.toFixed(2); } + protected formatRaceTime(value: number | null | undefined): string { + return value === null || value === undefined ? '-' : duration(value); + } + protected recoveryLabel(status: RunningKpiDashboard['recovery']['status']): string { switch (status) { case 'green':