aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/import-package/import-package.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/import-package/import-package.component.ts')
-rw-r--r--cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/import-package/import-package.component.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/import-package/import-package.component.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/import-package/import-package.component.ts
index 5797d18d5..c6c75eb9c 100644
--- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/import-package/import-package.component.ts
+++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/import-package/import-package.component.ts
@@ -115,11 +115,11 @@ export class ImportPackageComponent implements OnInit {
this.zipFile.generateAsync({type: 'blob'}).then(blob => {
this.packageCreationService.savePackage(blob).subscribe(
bluePrintDetailModels => {
- this.toastService.info('package is imported and saved successfully ');
+ this.toastService.info('Package is imported and saved successfully ');
this.router.navigate(['/packages']);
this.packagesStore.getAll();
}, error =>
- this.toastService.error('there is an error happened ' + error));
+ this.toastService.error('Errot occured ' + error));
});
});
}
@@ -134,11 +134,11 @@ export class ImportPackageComponent implements OnInit {
this.zipFile.generateAsync({type: 'blob'}).then(blob => {
this.packageCreationService.deploy(blob).subscribe(
bluePrintDetailModels => {
- this.toastService.info('package is imported and deployed successfully ');
+ this.toastService.info('Package is imported and deployed successfully ');
this.router.navigate(['/packages']);
this.packagesStore.getAll();
}, error =>
- this.toastService.error('there is an error happened ' + error));
+ this.toastService.error('Errot occured ' + error));
});
});
}