From c7f70199ee2dd237d01dadfa7de6842d766a1ef0 Mon Sep 17 00:00:00 2001 From: Ahmedeldeeb50 Date: Wed, 4 Nov 2020 23:52:50 +0200 Subject: Display artifacts in Function attributes tab. Handle Pre-defined Template option Issue-ID: CCSDK-2900 Signed-off-by: Ahmedeldeeb50 Change-Id: Id77750a5e9e451405c9a01d349e1f210f31bb792 --- .../configuration-dashboard/configuration-dashboard.component.ts | 2 ++ 1 file changed, 2 insertions(+) (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 8ba7ea030..766c50a98 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 @@ -207,6 +207,8 @@ export class ConfigurationDashboardComponent extends ComponentCanDeactivate impl this.configurationDashboardService.downloadResource(artifactName + '/' + artifactVersion).subscribe(response => { const blob = new Blob([response], { type: 'application/octet-stream' }); saveAs(blob, artifactName + '-' + artifactVersion + '-CBA.zip'); + + }, err => { }, () => { this.ngxService.stop(); }); } -- cgit 1.2.3-korg