From 9048087d03e01c4a191be5e6af282fbceb254b2d Mon Sep 17 00:00:00 2001 From: Daniel Molina Date: Thu, 23 Oct 2014 12:41:40 +0200 Subject: [PATCH] bug #3257: Fix Dashboard Total REAL CPU USAGE --- src/sunstone/public/js/plugins/vms-tab.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sunstone/public/js/plugins/vms-tab.js b/src/sunstone/public/js/plugins/vms-tab.js index 1052380569..5849028607 100644 --- a/src/sunstone/public/js/plugins/vms-tab.js +++ b/src/sunstone/public/js/plugins/vms-tab.js @@ -1149,7 +1149,7 @@ function updateVMachinesView(request, vmachine_list){ tr("REAL CPU USAGE"), "40px", "14px", - {"percentage": usage, "str": (total_real_cpu + " / " + total_allocated_cpu/100)}) + {"percentage": usage, "str": (total_real_cpu + " / " + total_allocated_cpu)}) ); usage = 0;