diff options
Diffstat (limited to 'vid-app-common/src/main/webapp/app/vid')
2 files changed, 3 insertions, 2 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/modals/new-change-management/new-change-management.controller.js b/vid-app-common/src/main/webapp/app/vid/scripts/modals/new-change-management/new-change-management.controller.js index 68f3b02f..26b1819b 100644 --- a/vid-app-common/src/main/webapp/app/vid/scripts/modals/new-change-management/new-change-management.controller.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/modals/new-change-management/new-change-management.controller.js @@ -186,7 +186,8 @@ 'operations_timeout':changeManagement.operationTimeout }; requestParametersData = { - payload: JSON.stringify(payloadObj) + controllerType: changeManagement.controllerType, + payload: JSON.stringify(payloadObj) } }else if(workflowType=="VNF Config Update"){ requestParametersData = { diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/modals/new-change-management/new-change-management.html b/vid-app-common/src/main/webapp/app/vid/scripts/modals/new-change-management/new-change-management.html index fa06258f..bf3579ea 100644 --- a/vid-app-common/src/main/webapp/app/vid/scripts/modals/new-change-management/new-change-management.html +++ b/vid-app-common/src/main/webapp/app/vid/scripts/modals/new-change-management/new-change-management.html @@ -84,7 +84,7 @@ </div> </div> - <div ng-if="vm.isScaleOut()"> + <div ng-if="vm.isScaleOut() || vm.shouldShowVnfInPlaceFields()"> <div class="form-group"> <label class="control-label">Controller Type</label> <select class="form-control" ng-model="vm.changeManagement.controllerType" name="controllerType" id="controllerType" |