Skip to content

Commit 0d1f975

Browse files
committed
prefer node variables over env variables
1 parent f13b9ce commit 0d1f975

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/molecules/flow/graph/compute/requestnode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ export const computeRequestNode = async (node, prevNodeOutputData, env, auth, lo
5353
const evalVariables = computeNodeVariables(node.data.variables, prevNodeOutputData);
5454

5555
const variablesDict = {
56-
...evalVariables,
5756
...env?.variables,
57+
...evalVariables,
5858
};
5959

6060
// step2 replace variables in url with value

0 commit comments

Comments
 (0)