aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.ts')
-rw-r--r--cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.ts
index 3347aa3ac..f3dc2fc4a 100644
--- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.ts
+++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.ts
@@ -493,15 +493,17 @@ export class DesignerComponent implements OnInit, OnDestroy {
this.create();
this.zipFile.generateAsync({ type: 'blob' })
.then(blob => {
- this.packageCreationService.enrichPackage(blob).subscribe(response => {
+ this.packageCreationService.enrichAndDeployPackage(blob).subscribe(response => {
+ // this.packageCreationService.enrichPackage(blob).subscribe(response => {
console.log('success');
const blobInfo = new Blob([response], { type: 'application/octet-stream' });
this.packageCreationStore.clear();
this.packageCreationExtractionService.extractBlobToStore(blobInfo);
- this.toastService.success('Enriched successfully ');
+ this.toastService.success('Enriched & Deployed successfully ');
}, err => {
console.log(err);
this.toastService.error(err.message, 'Enrich Failed');
+ this.ngxService.stop();
}, () => {
this.ngxService.stop();
});