From dc84419cc736760251720348218a414bdea8b1b9 Mon Sep 17 00:00:00 2001 From: tanchekwei Date: Thu, 15 May 2025 20:51:00 +0800 Subject: [PATCH] fix: Correct URL parameter parsing in execute page --- src/execute/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/execute/index.js b/src/execute/index.js index 08dc4832f..2d30368d7 100644 --- a/src/execute/index.js +++ b/src/execute/index.js @@ -11,7 +11,7 @@ function getWorkflowDetail() { const variables = {}; const { 1: workflowId } = pathname.split('/'); - searchParams.forEach((key, value) => { + searchParams.forEach((value, key) => { const varValue = parseJSON(decodeURIComponent(value), '##_empty'); if (varValue === '##_empty') return;