From 5766ddb4d16547e1d3ffb5bdea861fbc9c230838 Mon Sep 17 00:00:00 2001 From: Abhishek Kumar Date: Mon, 1 Jul 2019 13:51:42 +0530 Subject: [PATCH] ui: fix for create network offering domain, zone selection bug Signed-off-by: Abhishek Kumar --- ui/scripts/configuration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/scripts/configuration.js b/ui/scripts/configuration.js index 7bcf719db27..553602a9a0a 100644 --- a/ui/scripts/configuration.js +++ b/ui/scripts/configuration.js @@ -4006,7 +4006,7 @@ } else if (value != '') { // normal data (serviceData.length ==1), e.g. "name", "displayText", "networkRate", "guestIpType", "lbType" (unwanted), "availability" (unwated when value is "Optional"), "egressdefaultpolicy", "state" (unwanted), "status" (unwanted), "allocationstate" (unwanted) if (key == "useVpc") { inputData['forvpc'] = value; - } else if (!(key == "lbType" || (key == "availability" && value == "Optional") || key == "state" || key == "status" || key == "allocationstate" || key == "useVpc" )) { + } else if (!(key == "lbType" || (key == "availability" && value == "Optional") || key == "state" || key == "status" || key == "allocationstate" || key == "useVpc" || key == "isPublic" || key == "domainId" || key == "zoneId")) { inputData[key] = value; } }