Skip to content

Commit 267f116

Browse files
committedApr 9, 2024·
fix filter mechanism
With ba7f578 no $result was available anymore.
1 parent 09cebce commit 267f116

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎meta/AggregationFilter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class AggregationFilter extends Aggregation
2020
*/
2121
public function render($showNotFound = false)
2222
{
23-
$colValues = $this->getAllColumnValues($this->result);
23+
$colValues = $this->getAllColumnValues($this->searchConfig->getResult()->getRows());
2424

2525
// column dropdowns
2626
foreach ($colValues as $num => $colData) {

0 commit comments

Comments
 (0)
Please sign in to comment.