diff --git a/frontend/src/lib/components/FlowTimeline.svelte b/frontend/src/lib/components/FlowTimeline.svelte index a5a444ac54..968b1bc612 100644 --- a/frontend/src/lib/components/FlowTimeline.svelte +++ b/frontend/src/lib/components/FlowTimeline.svelte @@ -72,7 +72,7 @@ } if (!isStillRunning) { - if (v.started_at && v.duration_ms) { + if (v.started_at && v.duration_ms != undefined) { let lmax = v.started_at + v.duration_ms if (!nmax) { nmax = lmax