From df93539e2035726c79aa35c9282874f64b46ce63 Mon Sep 17 00:00:00 2001 From: Steffen Persch Date: Fri, 4 Aug 2023 22:42:13 +0200 Subject: [PATCH] [BUG] merge all route params --- src/Service/GridService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service/GridService.php b/src/Service/GridService.php index 7e6bb20..6dd83fc 100644 --- a/src/Service/GridService.php +++ b/src/Service/GridService.php @@ -148,7 +148,7 @@ public function getGrid(GridHelper $gridHelper): Grid $filterData, ($this->saveFilter && $gridHelper->getAllowSaveFilter()), $route, - $request->query->all(), + array_merge($request->attributes->get('_route_params'), $request->query->all()), $existingFilters, $aggregateResults );