diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | web/js/dashboard.js | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index e919ec113..6e7fade45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ * Unreleased - Bugfixes: - Make sure dashboard filters all fit onto one line. + - Fix issue with red bars on bar graph of many categories. * v2.3 (18th December 2017) - New features: 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, { |