Repository: cloudstack Updated Branches: refs/heads/master 30fbff868 -> 3d5c217c8
CLOUDSTACK-7451: UI > create network offering > when VpcVirtualRouter is selected as service provider, show System Offering for Router dropdown. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/3d5c217c Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/3d5c217c Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/3d5c217c Branch: refs/heads/master Commit: 3d5c217c8d889c6ea7114f8907e0ba0916529eb6 Parents: 30fbff8 Author: Jessica Wang <jessicaw...@apache.org> Authored: Wed Aug 27 15:32:58 2014 -0700 Committer: Jessica Wang <jessicaw...@apache.org> Committed: Wed Aug 27 15:33:13 2014 -0700 ---------------------------------------------------------------------- ui/scripts/configuration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/3d5c217c/ui/scripts/configuration.js ---------------------------------------------------------------------- diff --git a/ui/scripts/configuration.js b/ui/scripts/configuration.js index a977f2e..e37ae4e 100644 --- a/ui/scripts/configuration.js +++ b/ui/scripts/configuration.js @@ -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 }