From 33406683825449874c490349778f27206c51dbca Mon Sep 17 00:00:00 2001 From: Swapnali Shadanan Pode Date: Fri, 29 Mar 2019 15:59:54 +0530 Subject: changes in resource creation Change-Id: Ia8dbfdf6e68f131c99b79e4bbc90f5cc9e17b31d Issue-ID: CCSDK-804 Signed-off-by: sp00501638 --- .../resource-creation/resource-creation.component.html | 9 ++++++--- .../resource-creation/resource-creation.component.scss | 3 +++ .../resource-creation/resource-creation.component.ts | 3 +++ 3 files changed, 12 insertions(+), 3 deletions(-) (limited to 'cds-ui/client/src/app/feature-modules/resource-definition/resource-creation') diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.html b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.html index 8ace910b1..c4fa67a62 100644 --- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.html +++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.html @@ -36,10 +36,13 @@ Browse or Search Resources

-
- +
+ +


+
+

File Upload Success! Please click Proceed to continue!

- + \ No newline at end of file diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.scss b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.scss index b3b7fe7d5..51df0969b 100644 --- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.scss +++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.scss @@ -43,4 +43,7 @@ word-wrap: break-word; min-height:350px; height: auto; +} +.success{ +color:green; } \ No newline at end of file diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.ts b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.ts index c751e0ee8..549fbb7ea 100644 --- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.ts +++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.ts @@ -34,6 +34,8 @@ export class ResourceCreationComponent implements OnInit { myFile: any; selectedValue: any; + showMsg:boolean=false; + constructor(private store: Store) { } @@ -53,6 +55,7 @@ export class ResourceCreationComponent implements OnInit { me.store.dispatch(new LoadResourcesSuccess(data)); console.log(data); } + this.showMsg= true; } selectedOption(value){ -- cgit 1.2.3-korg