From 747524c37cd8156c585209463567b5d320417e99 Mon Sep 17 00:00:00 2001 From: ezhil Date: Wed, 30 Jan 2019 20:23:56 +0530 Subject: Application name input to CBAWizard Change-Id: I70edac57bbfb38a45dafcd48cefd169e60fbb8aa Issue-ID: CCSDK-703 Signed-off-by: ezhil --- .../resource-definition/resource-definition.component.html | 2 +- .../resource-definition/resource-definition.component.ts | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'cds-ui/client/src/app/feature-modules/resource-definition') diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.html b/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.html index 199ddf907..df6cc7363 100644 --- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.html +++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.html @@ -18,6 +18,6 @@ * ============LICENSE_END========================================================= */--> - + diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.ts b/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.ts index 65ac90b4b..c2f3dad7f 100644 --- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.ts +++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.ts @@ -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() { } -- cgit 1.2.3-korg