Skip to content

Commit 1a27a49

Browse files
author
Bruce An
committed
clean-up
1 parent c66b19a commit 1a27a49

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

web/src/main/ui/app/components/flows-new/edit-flow/edit-flow.component.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,9 @@ export class EditFlowComponent implements OnInit, OnDestroy {
8989
}
9090
getSteps() {
9191
this.manageFlowsService.getSteps(this.flowId).subscribe( resp => {
92-
console.log('steps', resp);
9392
const newArray = resp.map( step => {
9493
return Step.fromJSON(step);
9594
});
96-
console.log('new array', newArray);
9795
this.stepsArray = newArray;
9896
this.selectedStepId = (this.stepsArray.length > 0) ? this.stepsArray[0].id : null;
9997
});

web/src/main/ui/app/components/flows-new/models/step.model.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ export class Step {
104104
}
105105
const newOptions = Object.assign(newStep.options, json.options);
106106
newStep.options = newOptions;
107-
console.log('newStep from JSON', newStep);
108107
}
109108
return newStep;
110109
}

0 commit comments

Comments
 (0)