From 63eb67ed6c6e36eb441b92ac0552f2e17ae5173a Mon Sep 17 00:00:00 2001 From: Ahmedeldeeb50 Date: Mon, 4 Jan 2021 14:45:26 +0200 Subject: Create local build profile for designer-client update loader logo Issue-ID: CCSDK-3072, CCSDK-2433 Signed-off-by: Ahmedeldeeb50 Change-Id: I47bdc099727342ca449a14085f648ae9aa07cf69 --- .../configuration-dashboard.component.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/configuration-dashboard/configuration-dashboard.component.ts') 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 c69bf1b5f..7ab8ad7bc 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 @@ -120,7 +120,10 @@ export class ConfigurationDashboardComponent extends ComponentCanDeactivate impl this.downloadCBAPackage(bluePrintDetailModels); this.packageCreationStore.clear(); } - }, err => { }, + this.ngxService.stop(); + }, err => { + this.ngxService.stop(); + }, () => { // this.ngxService.stop(); }); @@ -132,7 +135,10 @@ export class ConfigurationDashboardComponent extends ComponentCanDeactivate impl const blob = new Blob([response], { type: 'application/octet-stream' }); this.currentBlob = blob; this.packageCreationExtractionService.extractBlobToStore(blob); - }, err => { }, + }, err => { + console.log(err); + this.ngxService.stop(); + }, () => { this.ngxService.stop(); }); -- cgit 1.2.3-korg