Skip to content

Commit

Permalink
fix filter mechanism
Browse files Browse the repository at this point in the history
With ba7f578 no $result was available
anymore.
  • Loading branch information
splitbrain committed Apr 9, 2024
1 parent 09cebce commit 267f116
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meta/AggregationFilter.php
Expand Up @@ -20,7 +20,7 @@ class AggregationFilter extends Aggregation
*/
public function render($showNotFound = false)
{
$colValues = $this->getAllColumnValues($this->result);
$colValues = $this->getAllColumnValues($this->searchConfig->getResult()->getRows());

// column dropdowns
foreach ($colValues as $num => $colData) {
Expand Down

0 comments on commit 267f116

Please sign in to comment.