Merge pull request #5271 from guerler/fix_workflow_leak

[17.09] Only collect required attributes of linked steps
This commit is contained in:
Dannon Baker
2018-01-05 17:47:56 -05:00
committed by GitHub
6 changed files with 9 additions and 9 deletions
@@ -102,7 +102,7 @@ define([ 'utils/utils', 'utils/deferred', 'mvc/ui/ui-misc', 'mvc/form/form-view'
input.help = input.step_linked ? input.help + ', ' : '';
input.help += 'Output dataset \'' + connection.output_name + '\' from step ' + ( parseInt( i ) + 1 );
input.step_linked = input.step_linked || [];
input.step_linked.push( step );
input.step_linked.push( { index: step.index, step_type: step.step_type } );
}
});
});
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long