From 019d01afbccfcee70b4f6d57e8efef64f1ba9f45 Mon Sep 17 00:00:00 2001 From: Ciro Scognamiglio Date: Fri, 8 Aug 2014 18:21:20 +0200 Subject: [PATCH] fixed labels fixed labels --- portal/templates/_widget-stats-top-slices.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/portal/templates/_widget-stats-top-slices.html b/portal/templates/_widget-stats-top-slices.html index 178cad2d..cb82247a 100644 --- a/portal/templates/_widget-stats-top-slices.html +++ b/portal/templates/_widget-stats-top-slices.html @@ -28,8 +28,8 @@ function drawChart(orderby) { data.addColumn('string', 'Slice'); data.addColumn('number', 'CPU (%)'); data.addColumn('number', 'MEM (%)'); - data.addColumn('number', 'SND (Kb)'); - data.addColumn('number', 'RCV (Kb)'); + data.addColumn('number', 'SND (Kbps)'); + data.addColumn('number', 'RCV (Kbps)'); $.each(ret, function() { result.push([this[0] + " | number of nodes: " + this[1], this[2], this[3], this[4], this[5]]); @@ -63,12 +63,12 @@ function drawChart(orderby) {
-
-- 2.43.0