Updated Branches: refs/heads/master 774141a9d -> 6fdd0eea1
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/6fdd0eea Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/6fdd0eea Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/6fdd0eea Branch: refs/heads/master Commit: 6fdd0eea1b85642833d0f32dab11aa0518a43e31 Parents: 774141a 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:44:37 2013 -0700 ---------------------------------------------------------------------- ui/scripts/vpc.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/6fdd0eea/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; },