From 3b9fd6d711dfda4f11d2b6327d2ae88b79fb041d Mon Sep 17 00:00:00 2001 From: Ezhilarasi Date: Mon, 5 Aug 2019 17:26:50 +0530 Subject: Changed template option label Change-Id: Iff709cefa5a76ddf1f9a9bcab49f98526283baf2 Issue-ID: CCSDK-1275 Signed-off-by: Ezhilarasi --- .../template-options/template-options.component.html | 6 +++--- .../template-options/template-options.component.ts | 10 +++------- 2 files changed, 6 insertions(+), 10 deletions(-) (limited to 'cds-ui/client/src') diff --git a/cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.html b/cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.html index 1e8f469b6..101bf06d9 100644 --- a/cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.html +++ b/cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.html @@ -19,7 +19,7 @@ limitations under the License. ============LICENSE_END============================================ --> - Upload From local

- Existing Template File

- Create New + Upload from local

+ Search from Existing Template

+ Create new
\ No newline at end of file diff --git a/cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.ts b/cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.ts index 3b598b24e..58fd57b8f 100644 --- a/cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.ts +++ b/cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.ts @@ -19,8 +19,8 @@ limitations under the License. ============LICENSE_END============================================ */ -import { Component, OnInit, Output, EventEmitter} from '@angular/core'; -import { HttpClient } from '@angular/common/http'; +import { Component, OnInit, Output, EventEmitter } from '@angular/core'; + @Component({ selector: 'app-template-options', templateUrl: './template-options.component.html', @@ -35,11 +35,7 @@ export class TemplateOptionsComponent implements OnInit { ngOnInit() { } - selected(value){ - console.log(value); + selected(value) { this.option.emit(value); } - // loadTemplateData() { - // // to do - // } } -- cgit 1.2.3-korg