From 0ff6f4926b0a1116ec51e352018ba62c6f6b655f Mon Sep 17 00:00:00 2001 From: Sumit-solytics Date: Wed, 13 Mar 2024 18:33:50 +0530 Subject: [PATCH] Pipeline code is implemented --- .../pipeline-details-drawer.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/webapp-common/pipelines/edit-pipeline-page/pipeline-details-drawer/pipeline-details-drawer.component.ts b/src/app/webapp-common/pipelines/edit-pipeline-page/pipeline-details-drawer/pipeline-details-drawer.component.ts index 7b9dd744..5b086330 100644 --- a/src/app/webapp-common/pipelines/edit-pipeline-page/pipeline-details-drawer/pipeline-details-drawer.component.ts +++ b/src/app/webapp-common/pipelines/edit-pipeline-page/pipeline-details-drawer/pipeline-details-drawer.component.ts @@ -385,7 +385,7 @@ export class PipelineDetailsDrawerComponent implements OnInit, AfterViewInit, On this.selectedEntity = step; this.highlightArrows(); } else if (!this.dragging) { - this.stepDiff = null; + this.stepDiff = this.pipelineData?.code ? this.pipelineData?.code : null; this.detailsPanelMode = this.defaultDetailsMode; this.store.dispatch(setSelectedPipelineStep({step: null})); this.selectedEntity = null;