Skip to content

Commit

Permalink
PR fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eireland committed Jan 31, 2024
1 parent 36fbc16 commit 53456f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/attribute-filter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const AttributeFilter = () => {
let filterValue;
const attrFilter = frequencies[selectedFrequency].filters.find(f => f.attribute === attr.name);
if (attrFilter) {
const noValueFilter = (attrFilter.operator === "aboveMean" || attrFilter?.operator === "belowMean" || attrFilter?.operator === "all") ;
const noValueFilter = (attrFilter.operator === "aboveMean" || attrFilter.operator === "belowMean" || attrFilter.operator === "all") ;
filterValue = attributeToFilter === attr && showFilterModal
? "--"
: noValueFilter
Expand Down

0 comments on commit 53456f8

Please sign in to comment.