mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 23:45:10 +00:00
Update chart [skip ci]
This commit is contained in:
@@ -176,9 +176,9 @@ class GoogleChartController extends Controller
|
||||
foreach ($allEntries as $entry) {
|
||||
if ($entry[2] > 0) {
|
||||
$left = $entry[1] - $entry[2];
|
||||
if ($left >= 0) {
|
||||
if ($left > 0) {
|
||||
$chart->addRow($entry[0], $left, null);
|
||||
} else {
|
||||
} else if($left < 0) {
|
||||
$chart->addRow($entry[0], null, $left);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user