From 342e6f2fef047e3ea1ba252421246ef605cbd0b1 Mon Sep 17 00:00:00 2001 From: James Cole Date: Mon, 21 Feb 2022 16:48:16 +0100 Subject: [PATCH] Fix https://github.com/firefly-iii/firefly-iii/issues/5806 --- app/Http/Controllers/Budget/ShowController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Budget/ShowController.php b/app/Http/Controllers/Budget/ShowController.php index 87c59e756e..3d9d7f774d 100644 --- a/app/Http/Controllers/Budget/ShowController.php +++ b/app/Http/Controllers/Budget/ShowController.php @@ -131,7 +131,7 @@ class ShowController extends Controller $collector->setRange($start, $end)->setTypes([TransactionType::WITHDRAWAL])->setLimit($pageSize)->setPage($page) ->withoutBudget()->withAccountInformation()->withCategoryInformation(); $groups = $collector->getPaginatedGroups(); - $groups->setPath(route('budgets.no-budget')); + $groups->setPath(route('budgets.no-budget-all')); return view('budgets.no-budget', compact('groups', 'subTitle', 'start', 'end')); }