From 6fdd0eea1b85642833d0f32dab11aa0518a43e31 Mon Sep 17 00:00:00 2001 From: Jessica Wang Date: Tue, 25 Jun 2013 16:44:37 -0700 Subject: [PATCH] CLOUDSTACK-3121: UI > VPC dashboard - fix a bug that showed wrong count number of private gateways. --- ui/scripts/vpc.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ui/scripts/vpc.js b/ui/scripts/vpc.js index f610889be9a..310fbb60fc4 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; },