From 21a930d3af420868e71455cffc18c1cc3199229b Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 31 May 2022 16:46:06 +0200 Subject: [PATCH] services/grid: Fix missing `Load More` when interacting with the search bar --- application/controllers/ServicesController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/ServicesController.php b/application/controllers/ServicesController.php index 39141bec..3463f0e8 100644 --- a/application/controllers/ServicesController.php +++ b/application/controllers/ServicesController.php @@ -323,7 +323,7 @@ class ServicesController extends Controller if (! $searchBar->hasBeenSubmitted() && $searchBar->hasBeenSent()) { // TODO: Everything up to addContent() (inclusive) can be removed once the grid is a widget - $this->view->compact = true; // Relevant controls are transmitted separately + $this->view->controls = ''; // Relevant controls are transmitted separately $viewRenderer = $this->getHelper('viewRenderer'); $viewRenderer->postDispatch(); $viewRenderer->setNoRender(false);