Updated Branches: refs/heads/master-6-17-stable 40bc81c36 -> 85e55136c
CLOUDSTACK-3121: UI > VPC dashboard - fix a bug that showed wrong count number of private gateways. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/85e55136 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/85e55136 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/85e55136 Branch: refs/heads/master-6-17-stable Commit: 85e55136c3a9ff6c9ac5fefe6f05044bd8175334 Parents: 40bc81c Author: Jessica Wang <jessicaw...@apache.org> Authored: Tue Jun 25 16:44:37 2013 -0700 Committer: Jessica Wang <jessicaw...@apache.org> Committed: Tue Jun 25 16:46:46 2013 -0700 ---------------------------------------------------------------------- ui/scripts/vpc.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/85e55136/ui/scripts/vpc.js ---------------------------------------------------------------------- diff --git a/ui/scripts/vpc.js b/ui/scripts/vpc.js index f610889..310fbb6 100644 --- a/ui/scripts/vpc.js +++ b/ui/scripts/vpc.js @@ -3453,7 +3453,10 @@ $.ajax({ url: createURL('listPrivateGateways'), async: false, - data: { 'vpcid': args.context.vpc[0].id }, + data: { + 'vpcid': args.context.vpc[0].id, + listAll: true + }, success: function(json) { privateGateways = json.listprivategatewaysresponse; },