aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2019-04-15 14:55:49 +0530
committerIBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com>2019-04-15 14:56:00 +0530
commit42523c47c3eeefd6d6bad7c95a1d7989e105032f (patch)
tree524a1204e8aefeafc4a2750af8e5e91ca942ab09
parent1c98d5673c70325bb9913419e730a31af009b6df (diff)
fixed alert box issue
moved alert box to right place (inside the subscriber) Issue-ID: CCSDK-1212 Change-Id: Ifbddfde3f9aff8a2f50c76c4513da149c60ee665 Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
-rw-r--r--cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.service.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.service.ts b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.service.ts
index 98e43b6b1..63c8019c3 100644
--- a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.service.ts
+++ b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/editor/editor.service.ts
@@ -42,6 +42,7 @@ export class EditorService {
.subscribe(response => {
let blob = new Blob([response], { 'type': "application/octet-stream" });
saveAs(blob, "CBA.zip");
+ window.alert('Blueprint download successfull' );
});
return "Download Success";