Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
tiberiuichim committed Mar 6, 2023
1 parent 5389bce commit 84e4b4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion searchlib/components/SearchApp/FacetApp.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default function FacetApp(props) {
() => () => {
removeFilter(field); // when the Facet is removed, we remove the filter
timerRef.current && clearTimeout(timerRef.current);
console.log('unmount', field);
// console.log('unmount', field);
},
[field, removeFilter],
);
Expand Down
2 changes: 1 addition & 1 deletion searchlib/lib/search/query/filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export function getDateRangeFilter(filter, filterConfig) {
},
};

if (res.bool[op][0].range[filter.field].to === undefined){
if (res.bool[op][0].range[filter.field].to === undefined) {
return;
}

Expand Down

0 comments on commit 84e4b4e

Please sign in to comment.