CLOUDSTACK-7451: UI > create network offering > when VpcVirtualRouter is selected as service provider, show System Offering for Router dropdown.

This commit is contained in:
Jessica Wang 2014-08-27 15:32:58 -07:00
parent 30fbff8687
commit 3d5c217c8d
1 changed files with 1 additions and 1 deletions

View File

@ -2363,7 +2363,7 @@
if ($("input[name='" + checkboxName + "']").is(":checked") == true) {
var providerFieldName = checkboxName.replace(".isEnabled", ".provider"); //either dropdown or input hidden field
var providerName = $("[name='" + providerFieldName + "']").val();
if (providerName == "VirtualRouter") {
if (providerName == "VirtualRouter" || providerName == "VpcVirtualRouter") {
havingVirtualRouterForAtLeastOneService = true;
return false; //break each loop
}