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 --- .../src/app/feature-modules/blueprint/blueprint.component.html | 2 +- .../client/src/app/feature-modules/blueprint/blueprint.component.ts | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'cds-ui/client/src/app/feature-modules/blueprint') diff --git a/cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.html b/cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.html index 8778de4ce..68d0ade67 100644 --- a/cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.html +++ b/cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.html @@ -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============================================ --> - + diff --git a/cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.ts b/cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.ts index 59cbb4593..4612499ac 100644 --- a/cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.ts +++ b/cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.ts @@ -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() { } -- cgit 1.2.3-korg