summaryrefslogtreecommitdiffhomepage
path: root/modules/admin-full/luasrc/view/admin_status/load.htm
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-11-12 16:32:08 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-11-12 16:32:08 +0000
commit71b595d4f3c9e7108a8041b3400aff29cc779fb4 (patch)
tree6528ca7ee4d5fab13ae7f51f01d48fae1662a777 /modules/admin-full/luasrc/view/admin_status/load.htm
parent24ccf0256a6a900401606408e51d5444b5613cec (diff)
modules/admin-full: fix wrong load number in realtime graph (#502)
Diffstat (limited to 'modules/admin-full/luasrc/view/admin_status/load.htm')
-rw-r--r--modules/admin-full/luasrc/view/admin_status/load.htm2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/admin-full/luasrc/view/admin_status/load.htm b/modules/admin-full/luasrc/view/admin_status/load.htm
index 64d2f3fb6..30e4267c0 100644
--- a/modules/admin-full/luasrc/view/admin_status/load.htm
+++ b/modules/admin-full/luasrc/view/admin_status/load.htm
@@ -235,7 +235,7 @@ $Id$
label_01_cur.innerHTML = (data_01[data_01.length-1] / 100).toFixed(2);
label_05_cur.innerHTML = (data_05[data_05.length-1] / 100).toFixed(2);
- label_15_cur.innerHTML = (data_01[data_15.length-1] / 100).toFixed(2);
+ label_15_cur.innerHTML = (data_15[data_15.length-1] / 100).toFixed(2);
label_01_avg.innerHTML = (data_01_avg / 100).toFixed(2);
label_05_avg.innerHTML = (data_05_avg / 100).toFixed(2);