From a5503de1d1560edc18e66eabed89b754fbb21865 Mon Sep 17 00:00:00 2001 From: Jessica Wang Date: Mon, 29 Jul 2013 13:50:16 -0700 Subject: [PATCH] CLOUDSTACK-2334: UI > Regions > GSLB > remove lb rule from GSLB - fix a bug that passed wrong parameter to API call. --- ui/scripts/regions.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/scripts/regions.js b/ui/scripts/regions.js index 11013dcb55a..28f241ca848 100644 --- a/ui/scripts/regions.js +++ b/ui/scripts/regions.js @@ -908,7 +908,8 @@ $.ajax({ url: createURL('removeFromGlobalLoadBalancerRule'), data: { - id: args.context.lbUnderGSLB[0].id + id: args.context.GSLB[0].id, + loadbalancerrulelist: args.context.lbUnderGSLB[0].id }, success: function(json) { var jid = json.removefromloadbalancerruleresponse.jobid;