diff options
author | Tao Shen <shentao@chinamobile.com> | 2018-11-14 11:50:47 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-11-14 11:50:47 +0000 |
commit | ffb300e069c38e96245ad06dba908558c68ac9a1 (patch) | |
tree | efc33be2b778663cbaaee860fee67e321a1ffc57 /usecaseui-portal/src/app/components | |
parent | 0dcf11c84e8be3bcecbf6135c21db30fc5ef8356 (diff) | |
parent | 3f8fdca4a21906d77ab61d75ab162edf6e1448c4 (diff) |
Merge "fix ns instance instantiation bug"
Diffstat (limited to 'usecaseui-portal/src/app/components')
-rw-r--r-- | usecaseui-portal/src/app/components/e2e-creation/e2e-creation.component.ts | 8 |
1 files changed, 1 insertions, 7 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 213df2b8..d45978ae 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 @@ -188,15 +188,9 @@ export class E2eCreationComponent implements OnInit { }) this.nsTemplateParameters.vnfs.forEach((vnf)=>{ let vnfparams = { - vnfProfileId: vnf.vnf_id, + vnfProfileId: vnf.properties.id, locationConstraints: { vimid: vnf.value.id, - accessinfo: { - tenant: "" - }, - accessInfo: { - tenant: "" - } } } this.ns_service2.locationConstraints.push(vnfparams); |