From: Sonsino, Ofir (os0695) Date: Sun, 11 Nov 2018 11:46:46 +0000 (+0200) Subject: Fix for max_vf_module_instances X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=9603e39ff0b5f3b409c7938c5315b0ea0a940dd5;p=sandbox-vid.git Fix for max_vf_module_instances Change-Id: I6df1275b7f2240b31f01c0f136993fb81e285107 Issue-ID: VID-346 Signed-off-by: Sonsino, Ofir (os0695) (cherry picked from commit d9cc8aad6ba07f123c6250056a99aea641150e86) --- 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 6029ed2d..3a5a1c7e 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 @@ -94,14 +94,14 @@ _.forEach(newVNFName.vfModules, function (mdl, key) { mdl.scale = false; //defaults to not scale unless user changes it - if(mdl.properties && mdl.properties.max_vf_module_instances) { + if(mdl.properties && mdl.properties.maxCountInstances) { //how many vf modules of the same customizationId belong to that vnf instance mdl.currentCount = _.filter(vm.vfModules, function(item){ return modulesAaiIds.indexOf(item.id) > -1 && item.properties["model-customization-id"] === mdl.customizationUuid; }).length; - mdl.scalable = mdl.properties.max_vf_module_instances.value - mdl.currentCount > 0; + mdl.scalable = mdl.properties.maxCountInstances.value - mdl.currentCount > 0; }else{ mdl.scalable = false; }