Skip to content

Commit

Permalink
Merge pull request #72 from AlexanderBlanchardAC/summon_facet_results
Browse files Browse the repository at this point in the history
fix: summon results filtering fix
  • Loading branch information
Chloe070196 authored Jul 12, 2024
2 parents 381c3fd + 2128d2f commit 8262dc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions code/web/release_notes/24.07.00.MD
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@

### Summon Updates
- Adjustments to code in Summon getFacetSet function to correct a bug. Individual facet filters can now be unchecked and the filter unset by clicking the checkbox. (*AB*)
- Adjust code to ensure that the filter applies correctly no matter what page of results users are on when they apply it. (*AB*)

### Other Updates
- Show the original translation term when translating text within Aspen. (*MDN*)
Expand Down
2 changes: 1 addition & 1 deletion code/web/sys/SearchObject/SummonSearcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ public function getFacetSet() {
if ($isApplied) {
$facetSettings['removalUrl'] = $this->renderLinkWithoutFilter($facetId . ':' . $facetValue);
} else {
$facetSettings['url'] = $this->renderSearchUrl() . '&filter[]=' . $facetId . ':' . urlencode($facetValue);
$facetSettings['url'] = $this->renderSearchUrl() . '&filter[]=' . $facetId . ':' . urlencode($facetValue) . '&page=1';
}
$list[] = $facetSettings;
}
Expand Down

0 comments on commit 8262dc3

Please sign in to comment.