Skip to content

Commit

Permalink
fix(superser-flow): storage boostrapPrerequest
Browse files Browse the repository at this point in the history
  • Loading branch information
ElonH committed May 17, 2020
1 parent f0b8bc7 commit fdce810
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/@dataflow/core/superset-flow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export abstract class SupersetFlow<
private boostrapPrerequest: DataFlowNode;
public deploy() {
super.deploy();
this.boostrapPrerequest$ = this.prerequest$.pipe(tap((x) => this.boostrapPrerequest));
this.boostrapPrerequest$ = this.prerequest$.pipe(tap((x) => (this.boostrapPrerequest = x)));
this.boostrapPrerequest$.pipe(take(1)).subscribe();
}
protected generateSuperset(current: DataFlowNode, previous: DataFlowNode): DataFlowNode {
Expand Down

0 comments on commit fdce810

Please sign in to comment.