Skip to content

Commit

Permalink
Fixes #584, change the metrics display to include current hour values.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrooksuk committed Apr 15, 2015
1 parent 7f0a77f commit 7e1d0eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/partials/metrics.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<ul class="list-group metrics">
@foreach($metrics as $metric)
<?php
$points = range(0, 10);
$points = range(1, 11);
foreach($points as $hour) {
$points[$hour] = $metric->getValues($hour);
}
Expand Down

0 comments on commit 7e1d0eb

Please sign in to comment.