You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by je...@apache.org on 2013/06/26 01:46:06 UTC

git commit: updated refs/heads/master to 6fdd0ee

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 <je...@apache.org>
Authored: Tue Jun 25 16:44:37 2013 -0700
Committer: Jessica Wang <je...@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;
               },