From: Ciro Scognamiglio Date: Fri, 8 Aug 2014 16:21:20 +0000 (+0200) Subject: fixed labels X-Git-Tag: myslice-1.0~17 X-Git-Url: http://git.onelab.eu/?p=unfold.git;a=commitdiff_plain;h=019d01afbccfcee70b4f6d57e8efef64f1ba9f45 fixed labels fixed labels --- 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) {
-