fix(flow-export): update all parameters

This commit is contained in:
Ali BARIN
2025-03-31 10:26:02 +00:00
parent 28d0ceb770
commit fff0ba4c72

View File

@@ -33,7 +33,7 @@ const updateParameters = (parameters, stepIdMap) => {
let updatedParameters = stringifiedParameters;
Object.entries(stepIdMap).forEach(([oldStepId, newStepId]) => {
updatedParameters = updatedParameters.replace(
updatedParameters = updatedParameters.replaceAll(
`{{step.${oldStepId}.`,
`{{step.${newStepId}.`
);