summaryrefslogtreecommitdiffstats
path: root/cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.ts
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2019-08-09 19:54:02 +0000
committerGerrit Code Review <gerrit@onap.org>2019-08-09 19:54:02 +0000
commit3a1077c1405b10e9d5e49e39e6e2493c8529c59a (patch)
tree5ee37b1f69f9af0d95cdb65f93b9cfc30a02ab30 /cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.ts
parent3e1cee7f8c022fe18e0e22cf72f925174c9ead26 (diff)
parent3b9fd6d711dfda4f11d2b6327d2ae88b79fb041d (diff)
Merge "Changed template option label"
Diffstat (limited to 'cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.ts')
-rw-r--r--cds-ui/client/src/app/feature-modules/blueprint/select-template/template-options/template-options.component.ts10
1 files changed, 3 insertions, 7 deletions
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
- // }
}