refactor: use step.executionSteps[].dataOut
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
e73f33f3db
commit
b288dc8c35
@@ -39,6 +39,6 @@ export const processStepWithExecutions = (steps: IStep[]): any[] => {
|
||||
id: step.id,
|
||||
// TODO: replace with step.name once introduced
|
||||
name: `${index + 1}. ${step.appKey}`,
|
||||
output: process(step.output, `step.${step.id}`),
|
||||
output: process(step.executionSteps?.[0]?.dataOut || {}, `step.${step.id}`),
|
||||
}));
|
||||
};
|
||||
|
Reference in New Issue
Block a user