diff --git a/ui/scripts/system.js b/ui/scripts/system.js index 2d3fe56c319..e08403e52a0 100644 --- a/ui/scripts/system.js +++ b/ui/scripts/system.js @@ -1317,8 +1317,10 @@ networkOfferingObjs = json.listnetworkofferingsresponse.networkoffering; if (networkOfferingObjs != null && networkOfferingObjs.length > 0) { for (var i = 0; i < networkOfferingObjs.length; i++) { - //if args.scope == "account-specific" or "project-specific", exclude Isolated network offerings with SourceNat service (bug 12869) - if(args.scope == "account-specific" || args.scope == "project-specific") { + + //comment out the following 12 lines because of CS-16718 + /* + if(args.scope == "account-specific" || args.scope == "project-specific") { //if args.scope == "account-specific" or "project-specific", exclude Isolated network offerings with SourceNat service (bug 12869) var includingSourceNat = false; var serviceObjArray = networkOfferingObjs[i].service; for(var k = 0; k < serviceObjArray.length; k++) { @@ -1330,6 +1332,7 @@ if(includingSourceNat == true) continue; //skip to next network offering } + */ networkOfferingArray.push({id: networkOfferingObjs[i].id, description: networkOfferingObjs[i].displaytext}); }