Application name input to CBAWizard 85/77585/1
authorezhil <ezhrajam@in.ibm.com>
Wed, 30 Jan 2019 14:53:56 +0000 (20:23 +0530)
committerezhil <ezhrajam@in.ibm.com>
Wed, 30 Jan 2019 14:54:19 +0000 (20:24 +0530)
Change-Id: I70edac57bbfb38a45dafcd48cefd169e60fbb8aa
Issue-ID: CCSDK-703
Signed-off-by: ezhil <ezhrajam@in.ibm.com>
cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.html
cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.ts
cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.html
cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.ts

index 8778de4..68d0ade 100644 (file)
@@ -16,5 +16,5 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 ============LICENSE_END============================================ -->
-<app-cbawizard></app-cbawizard>
+<app-cbawizard [appName]="appName"></app-cbawizard>
 <router-outlet></router-outlet>
index 59cbb45..4612499 100644 (file)
@@ -27,8 +27,11 @@ import { Component, OnInit } from '@angular/core';
   styleUrls: ['./blueprint.component.scss']
 })
 export class BlueprintComponent implements OnInit {
+  appName: String;
 
-  constructor() { }
+  constructor() {
+    this.appName="cba";
+   }
 
   ngOnInit() {
   }
index 199ddf9..df6cc73 100644 (file)
@@ -18,6 +18,6 @@
 * ============LICENSE_END=========================================================
 */-->
 
-<app-cbawizard></app-cbawizard>
+<app-cbawizard [appName]="appName"></app-cbawizard>
 <router-outlet></router-outlet>
 
index 65ac90b..c2f3dad 100644 (file)
@@ -26,8 +26,11 @@ import { Component, OnInit } from '@angular/core';
   styleUrls: ['./resource-definition.component.scss']
 })
 export class ResourceDefinitionComponent implements OnInit {
+  appName: String;
 
-  constructor() { }
+  constructor() { 
+    this.appName="datadict";
+  }
 
   ngOnInit() {
   }