Merge pull request #6 from Nuva-Org/develop-ml

Pipeline code is implemented
This commit is contained in:
Shubham Takode 2024-03-14 16:54:05 +05:30 committed by GitHub
commit 5c0795f58f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -385,7 +385,7 @@ export class PipelineDetailsDrawerComponent implements OnInit, AfterViewInit, On
this.selectedEntity = step; this.selectedEntity = step;
this.highlightArrows(); this.highlightArrows();
} else if (!this.dragging) { } else if (!this.dragging) {
this.stepDiff = null; this.stepDiff = this.pipelineData?.code ? this.pipelineData?.code : null;
this.detailsPanelMode = this.defaultDetailsMode; this.detailsPanelMode = this.defaultDetailsMode;
this.store.dispatch(setSelectedPipelineStep({step: null})); this.store.dispatch(setSelectedPipelineStep({step: null}));
this.selectedEntity = null; this.selectedEntity = null;