Skip to content

Commit

Permalink
Merge branch 'develop' into refactor/pr-1958
Browse files Browse the repository at this point in the history
  • Loading branch information
felipeelia authored May 27, 2021
2 parents 588543e + 0940eec commit 20e5fcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/js/facets.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { debounce } from './utils/helpers';
*/
const handleFacetSearch = (event, facetTerms) => {
const { target } = event;
const searchTerm = target.value.replace(/\s/g, '').toLowerCase();
const searchTerm = target.value.toLowerCase();
const terms = facetTerms.querySelectorAll('.term');

terms.forEach((term) => {
Expand Down
Loading

0 comments on commit 20e5fcf

Please sign in to comment.