CLOUDSTACK-3121: UI > VPC dashboard - fix a bug that showed wrong count number of private gateways.

This commit is contained in:
Jessica Wang 2013-06-25 16:44:37 -07:00
parent 774141a9dc
commit 6fdd0eea1b
1 changed files with 4 additions and 1 deletions

View File

@ -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;
},