diff options
author | Huabing Zhao <zhaohuabing@gmail.com> | 2019-03-28 13:29:26 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-03-28 13:29:26 +0000 |
commit | 7d92c5eb4e83a4967afdd9e0fdb955dde7075510 (patch) | |
tree | 2fc71d2922af21e27175d9e65a109aa55f589d56 /usecaseui-portal/src/app/components | |
parent | 85ff13a2ae3243f250ef0d6fa0407e4d11e9adeb (diff) | |
parent | ed711ae3ce17c0d19f2ab7e999d4966a96dde516 (diff) |
Merge "Add dropdown to select NFVO"
Diffstat (limited to 'usecaseui-portal/src/app/components')
-rw-r--r-- | usecaseui-portal/src/app/components/e2e-creation/e2e-creation.component.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usecaseui-portal/src/app/components/e2e-creation/e2e-creation.component.ts b/usecaseui-portal/src/app/components/e2e-creation/e2e-creation.component.ts index 289d1221..3d2bfc57 100644 --- a/usecaseui-portal/src/app/components/e2e-creation/e2e-creation.component.ts +++ b/usecaseui-portal/src/app/components/e2e-creation/e2e-creation.component.ts @@ -179,7 +179,10 @@ export class E2eCreationComponent implements OnInit { }) this.service.parameters.resources.push(nsService); }) - + this.service.parameters.requestInputs['orchestrator'] = this.createParams.orchestrator.name; + if(this.createParams.isSol005Interface){ + this.service.parameters.requestInputs['isSol005Interface'] = this.createParams.isSol005Interface; + } this.e2eCloseCreate.emit({service:this.service}); }else if(type == "ns"){ |