From 38c2bfb6d5bd2f2d3d0909ba5db10127dbf128b6 Mon Sep 17 00:00:00 2001 From: Sumit-solytics Date: Tue, 5 Mar 2024 17:47:47 +0530 Subject: [PATCH] file name changed --- ...ponent.html => pipeline-details-drawer.component.html} | 0 ...ponent.scss => pipeline-details-drawer.component.scss} | 0 ....component.ts => pipeline-details-drawer.component.ts} | 8 ++++---- .../edit-pipeline-page/edit-pipeline-page.component.html | 2 +- src/app/webapp-common/pipelines/pipelines.module.ts | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) rename src/app/webapp-common/pipelines/details-dialog/{details-dialog.component.html => pipeline-details-drawer.component.html} (100%) rename src/app/webapp-common/pipelines/details-dialog/{details-dialog.component.scss => pipeline-details-drawer.component.scss} (100%) rename src/app/webapp-common/pipelines/details-dialog/{details-dialog.component.ts => pipeline-details-drawer.component.ts} (89%) diff --git a/src/app/webapp-common/pipelines/details-dialog/details-dialog.component.html b/src/app/webapp-common/pipelines/details-dialog/pipeline-details-drawer.component.html similarity index 100% rename from src/app/webapp-common/pipelines/details-dialog/details-dialog.component.html rename to src/app/webapp-common/pipelines/details-dialog/pipeline-details-drawer.component.html diff --git a/src/app/webapp-common/pipelines/details-dialog/details-dialog.component.scss b/src/app/webapp-common/pipelines/details-dialog/pipeline-details-drawer.component.scss similarity index 100% rename from src/app/webapp-common/pipelines/details-dialog/details-dialog.component.scss rename to src/app/webapp-common/pipelines/details-dialog/pipeline-details-drawer.component.scss diff --git a/src/app/webapp-common/pipelines/details-dialog/details-dialog.component.ts b/src/app/webapp-common/pipelines/details-dialog/pipeline-details-drawer.component.ts similarity index 89% rename from src/app/webapp-common/pipelines/details-dialog/details-dialog.component.ts rename to src/app/webapp-common/pipelines/details-dialog/pipeline-details-drawer.component.ts index aed926e2..9bd3bf17 100644 --- a/src/app/webapp-common/pipelines/details-dialog/details-dialog.component.ts +++ b/src/app/webapp-common/pipelines/details-dialog/pipeline-details-drawer.component.ts @@ -6,11 +6,11 @@ import { updatePipeline, } from "../pipelines.actions"; @Component({ - selector: 'sm-details-dialog', - templateUrl: './details-dialog.component.html', - styleUrls: ['./details-dialog.component.scss'] + selector: 'sm-pipeline-details-drawer', + templateUrl: './pipeline-details-drawer.component.html', + styleUrls: ['./pipeline-details-drawer.component.scss'] }) -export class DetailsDialogComponent implements OnInit { +export class PipelineDetailsDrawerComponent implements OnInit { @ViewChild('drawer') drawer: MatDrawer; @Input() pipelineId: string; @Input() pipelineData: any; diff --git a/src/app/webapp-common/pipelines/edit-pipeline-page/edit-pipeline-page.component.html b/src/app/webapp-common/pipelines/edit-pipeline-page/edit-pipeline-page.component.html index 11719b78..7dc6dc5f 100644 --- a/src/app/webapp-common/pipelines/edit-pipeline-page/edit-pipeline-page.component.html +++ b/src/app/webapp-common/pipelines/edit-pipeline-page/edit-pipeline-page.component.html @@ -8,7 +8,7 @@ [ioOptions]="selectedStepInputOutputOptions" (stepParamsChanged)="selectedStepParamsChanged($event)"/> - + ({ PipelineSettingDialogComponent, PipelineSettingFormComponent, PipelineStepInfoComponent, - DetailsDialogComponent, + PipelineDetailsDrawerComponent, ], imports: [ CommonModule,