Merge pull request #2419 from automatisch/aut-1498

fix(flow-export): update all parameters
This commit is contained in:
Ali BARIN
2025-03-31 14:29:37 +02:00
committed by GitHub

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}.`
);