From 9a0b75be843e1cb2035efe427640dcc5e53efb54 Mon Sep 17 00:00:00 2001 From: Guilhem Date: Thu, 17 Jul 2025 16:02:06 +0200 Subject: [PATCH] correctly set flow initial job status on running preview (#6214) --- frontend/src/lib/components/FlowPreviewContent.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/components/FlowPreviewContent.svelte b/frontend/src/lib/components/FlowPreviewContent.svelte index d03dc4fe03..5454879028 100644 --- a/frontend/src/lib/components/FlowPreviewContent.svelte +++ b/frontend/src/lib/components/FlowPreviewContent.svelte @@ -122,7 +122,7 @@ args: Record, restartedFrom: RestartedFrom | undefined ) { - if (stepHistoryLoader?.flowJobInitial) { + if (stepHistoryLoader?.flowJobInitial !== false) { stepHistoryLoader?.setFlowJobInitial(false) } try {