From: Arundathi Patil Date: Mon, 15 Apr 2019 09:25:49 +0000 (+0530) Subject: fixed alert box issue X-Git-Tag: 0.4.2~82^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F95%2F85295%2F1;p=ccsdk%2Fcds.git 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 --- 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";