From 42523c47c3eeefd6d6bad7c95a1d7989e105032f Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Mon, 15 Apr 2019 14:55:49 +0530 Subject: 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 --- .../feature-modules/blueprint/modify-template/editor/editor.service.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'cds-ui/client/src/app/feature-modules/blueprint/modify-template') 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"; -- cgit 1.2.3-korg