From b5cfd0e90bedf5d2a049d16d39bcc78cafac3251 Mon Sep 17 00:00:00 2001 From: Tiago Peralta Date: Sun, 3 Dec 2017 03:10:35 +0000 Subject: [PATCH] Fixed statistics graphs --- templates/bootstrap/statistics/graphs/default.tpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/bootstrap/statistics/graphs/default.tpl b/templates/bootstrap/statistics/graphs/default.tpl index b2007f71..95261fcc 100644 --- a/templates/bootstrap/statistics/graphs/default.tpl +++ b/templates/bootstrap/statistics/graphs/default.tpl @@ -2,7 +2,7 @@ $(function () { var hashChart = Morris.Line({ element: 'hashrate-area-chart', - data: {$YOURMININGSTATS}, + data: {$YOURMININGSTATS nofilter}, xkey: 'time', ykeys: ['hashrate'], labels: ['Hashrate'], @@ -17,7 +17,7 @@ $(function () { var workersChart = Morris.Line({ element: 'workers-area-chart', - data: {$YOURMININGSTATS}, + data: {$YOURMININGSTATS nofilter}, xkey: 'time', ykeys: ['workers'], labels: ['Workers'], @@ -32,7 +32,7 @@ $(function () { var shareCharts= Morris.Line({ element: 'sharerate-area-chart', - data: {$YOURMININGSTATS}, + data: {$YOURMININGSTATS nofilter}, xkey: 'time', ykeys: ['sharerate'], labels: ['Sharerate'],