diff --git a/app/Http/Controllers/GoogleChartController.php b/app/Http/Controllers/GoogleChartController.php index 438f47e63f..a2faed935c 100644 --- a/app/Http/Controllers/GoogleChartController.php +++ b/app/Http/Controllers/GoogleChartController.php @@ -55,7 +55,7 @@ class GoogleChartController extends Controller $today = new Carbon; while ($end >= $current) { - $certain = $current > $today; + $certain = $current < $today; $chart->addRow(clone $current, Steam::balance($account, $current), $certain); $current->addDay(); }