FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

VPC UI: Fix dashboard totals for admin viewing user VPCs · kwanggithub/cloudstack@eaea724 · GitHub

This repository was archived by the owner on Jan 15, 2020. It is now read-only.
/ cloudstack Public archive
forked from apache/cloudstack

Commit eaea724

Browse files
committed
VPC UI: Fix dashboard totals for admin viewing user VPCs
1 parent 4c1ace5 commit eaea724

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

‎ui/scripts/vpc.js‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3330,7 +3330,7 @@
33303330

33313331
// Get internal load balancers
33323332
$.ajax({
3333-
url: createURL('listLoadBalancers'),
3333+
url: createURL('listLoadBalancers&listAll=true'),
33343334
async: false,
33353335
data: { networkid: tier.id },
33363336
success: function(json) {
@@ -3343,7 +3343,7 @@
33433343

33443344
// Get Public LB IPs
33453345
$.ajax({
3346-
url: createURL('listPublicIpAddresses'),
3346+
url: createURL('listPublicIpAddresses&listAll=true'),
33473347
async: false,
33483348
data: { networkid: tier.id, forloadbalancing: true },
33493349
success: function(json) {
@@ -3356,7 +3356,7 @@
33563356

33573357
// Get static NAT IPs
33583358
$.ajax({
3359-
url: createURL('listPublicIpAddresses'),
3359+
url: createURL('listPublicIpAddresses&listAll=true'),
33603360
async: false,
33613361
data: { networkid: tier.id, isstaticnat: true },
33623362
success: function(json) {
@@ -3369,7 +3369,7 @@
33693369

33703370
// Get VMs
33713371
$.ajax({
3372-
url: createURL('listVirtualMachines'),
3372+
url: createURL('listVirtualMachines&listAll=true'),
33733373
async: false,
33743374
data: { networkid: tier.id },
33753375
success: function(json) {

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL