diff options
author | ShaabanEltanany <shaaban.eltanany.ext@orange.com> | 2020-09-01 10:29:41 +0200 |
---|---|---|
committer | ShaabanEltanany <shaaban.eltanany.ext@orange.com> | 2020-09-01 11:25:06 +0200 |
commit | 6afbfc0e71798f21b8b70ad34a468aacc63d03ab (patch) | |
tree | 6f1f54a2d992e5182e2669cf3983506e18a7676a | |
parent | 35dd33089474aa36700d6c75747dd484dcd4c216 (diff) |
disable edit and discard without change in metadata
Issue-ID: CCSDK-2336
Signed-off-by: ShaabanEltanany <shaaban.eltanany.ext@orange.com>
Change-Id: I6e13dbf4b5ec0f868c839ebd77ec1a9aa5241210
2 files changed, 2 insertions, 4 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.html b/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.html index 0c42d3ef2..f79657af8 100644 --- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.html +++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.html @@ -763,7 +763,7 @@ <div class="col"> <div class="tab-content" id="nav-tabContent"> <div class="tab-pane fade show active" id="nav-metadata" role="tabpanel" - aria-labelledby="nav-metadata-tab" (click)="clickEvent()"> + aria-labelledby="nav-metadata-tab" (change)="clickEvent()"> <app-metadata-tab></app-metadata-tab> </div> <div class="tab-pane fade" id="nav-template" role="tabpanel" diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.ts index 764a5b9b1..47e89b39a 100644 --- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.ts +++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.ts @@ -65,13 +65,11 @@ export class ConfigurationDashboardComponent implements OnInit { if (cbaPackage && cbaPackage.metaData && cbaPackage.metaData.description && cbaPackage.metaData.name && cbaPackage.metaData.version && regexp.test(cbaPackage.metaData.version)) { - this.isSaveEnabled = true; if (!this.metadataClasses.includes('complete')) { - this.metadataClasses += 'complete'; + this.metadataClasses += ' complete'; } } else { this.metadataClasses = this.metadataClasses.replace('complete', ''); - this.isSaveEnabled = false; } }); |