diff --git a/app/Helpers/Report/ReportHelper.php b/app/Helpers/Report/ReportHelper.php index 6c2354b04e..709a306b0d 100644 --- a/app/Helpers/Report/ReportHelper.php +++ b/app/Helpers/Report/ReportHelper.php @@ -385,7 +385,7 @@ class ReportHelper implements ReportHelperInterface foreach ($accounts as $account) { $entry = $spentData->filter( - function (TransactionJournal $model) use ($budget, $account) { + function (TransactionJournal $model) use ($account) { return $model->account_id == $account->id && is_null($model->budget_id); } ); diff --git a/config/firefly.php b/config/firefly.php index a6f6f68ba7..3659db04e6 100644 --- a/config/firefly.php +++ b/config/firefly.php @@ -2,7 +2,7 @@ return [ 'chart' => 'chartjs', - 'version' => '3.6.0', + 'version' => '3.6.1', 'index_periods' => ['1D', '1W', '1M', '3M', '6M', '1Y', 'custom'], 'budget_periods' => ['daily', 'weekly', 'monthly', 'quarterly', 'half-year', 'yearly'], 'csv_import_enabled' => true,