From 322b17a69d67d2ae409e88fa8dacff9889f1cc8f Mon Sep 17 00:00:00 2001 From: Jessica Wang Date: Fri, 9 Aug 2013 14:51:26 -0700 Subject: [PATCH] CLOUDSTACK-4218: UI > Infrastructure > zone > UCS > UCS manager details tab - fix a bug that passed wrong id to listUcsManagers API. --- ui/scripts/system.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/scripts/system.js b/ui/scripts/system.js index 9eac3401a97..ffac3c1176e 100644 --- a/ui/scripts/system.js +++ b/ui/scripts/system.js @@ -13850,7 +13850,7 @@ $.ajax({ url: createURL('listUcsManagers'), data: { - id: args.context.physicalResources[0].id + id: args.context.ucsManagers[0].id }, success: function(json) { //for testing only (begin)