diff options
Diffstat (limited to 'usecaseui-portal/src/app/components/e2e-creation/e2e-creation.component.ts')
-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"){ |