Changed template option label 75/92675/1
authorEzhilarasi <ezhrajam@in.ibm.com>
Mon, 5 Aug 2019 11:56:50 +0000 (17:26 +0530)
committerEzhilarasi <ezhrajam@in.ibm.com>
Mon, 5 Aug 2019 11:56:57 +0000 (17:26 +0530)
Change-Id: Iff709cefa5a76ddf1f9a9bcab49f98526283baf2
Issue-ID: CCSDK-1275
Signed-off-by: Ezhilarasi <ezhrajam@in.ibm.com>
cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.html
cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.ts

index 1e8f469..101bf06 100644 (file)
@@ -19,7 +19,7 @@ limitations under the License.
 ============LICENSE_END============================================
 -->
 <mat-radio-group>
-    <mat-radio-button value="1" (click)="selected(1)">Upload From local</mat-radio-button><br> <br>
-    <mat-radio-button value="2" (click)="selected(2)">Existing Template File</mat-radio-button><br> <br>
-    <mat-radio-button value="3" (click)="selected(3)">Create New</mat-radio-button>
+    <mat-radio-button value="1" (click)="selected(1)">Upload from local</mat-radio-button><br> <br>
+    <mat-radio-button value="2" (click)="selected(2)">Search from Existing Template </mat-radio-button><br> <br>
+    <mat-radio-button value="3" (click)="selected(3)">Create new</mat-radio-button>
 </mat-radio-group>
\ No newline at end of file
index 3b598b2..58fd57b 100644 (file)
@@ -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
-  // }
 }