From fa43b7a67226cac47c71b08dc4b2a4f857543d50 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Fri, 29 Aug 2025 07:24:47 +0000 Subject: [PATCH] fix: skipPreprocessor on re-running job immedaitely from UI --- .../src/routes/(root)/(logged)/run/[...run]/+page.svelte | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/routes/(root)/(logged)/run/[...run]/+page.svelte b/frontend/src/routes/(root)/(logged)/run/[...run]/+page.svelte index 94c2d380b6..cb42658b10 100644 --- a/frontend/src/routes/(root)/(logged)/run/[...run]/+page.svelte +++ b/frontend/src/routes/(root)/(logged)/run/[...run]/+page.svelte @@ -355,12 +355,14 @@ if (job?.job_kind == 'script') { id = await JobService.runScriptByHash({ ...commonArgs, - hash: job.script_hash! + hash: job.script_hash!, + skipPreprocessor: true }) } else { id = await JobService.runFlowByPath({ ...commonArgs, - path: job.script_path! + path: job.script_path!, + skipPreprocessor: true }) }