Skip to content

Commit

Permalink
fix(variables): send effect outputs down the findAndReplaceVariables …
Browse files Browse the repository at this point in the history
…recursion

Fixes #2444
  • Loading branch information
ebiggz committed Jul 25, 2024
1 parent 72b3b88 commit bd2cfe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/common/effect-runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const findAndReplaceVariables = async (data, trigger, effectOutputs) => {
data[key] = replacedValue;
} else if (value && typeof value === "object") {
// recurse
await findAndReplaceVariables(value, trigger);
await findAndReplaceVariables(value, trigger, effectOutputs);
}
}
};
Expand Down

0 comments on commit bd2cfe3

Please sign in to comment.