mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-3121: UI > VPC dashboard - fix a bug that showed wrong count number of private gateways.
This commit is contained in:
parent
774141a9dc
commit
6fdd0eea1b
|
|
@ -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;
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue