diff options
Diffstat (limited to 'web/js')
-rw-r--r-- | web/js/dashboard.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/js/dashboard.js b/web/js/dashboard.js index a6e06e048..b2a87c142 100644 --- a/web/js/dashboard.js +++ b/web/js/dashboard.js @@ -179,8 +179,8 @@ $(function(){ rowValues.push( parseInt($(this).find('td').text(), 10) ); }); - for (var i=colours.length; i<rowLabels.length; i++) { - colours[i] = colours[i % colours.length]; + for (var l=colours.length, i=l; i<rowLabels.length; i++) { + colours[i] = colours[i % l]; } var barChart = new Chart($canvas, { |