diff --git a/projects/frontend/src/components/Dashboard/StatsOverview.jsx b/projects/frontend/src/components/Dashboard/StatsOverview.jsx index da825d9..802e3d5 100644 --- a/projects/frontend/src/components/Dashboard/StatsOverview.jsx +++ b/projects/frontend/src/components/Dashboard/StatsOverview.jsx @@ -671,7 +671,9 @@ const StatsOverview = () => {
Status: {detail.status}
-
{detail.runtime_seconds.toFixed(2)}s
+
+ {detail.runtime_seconds ? detail.runtime_seconds.toFixed(2) : '0.00'}s +
))} @@ -704,7 +706,9 @@ const StatsOverview = () => { )}
-
{workflow.runtime_seconds?.toFixed(2)}s
+
+ {workflow.runtime_seconds ? workflow.runtime_seconds.toFixed(2) : '0.00'}s +
{new Date(workflow.timestamp).toLocaleTimeString()}