Skip to content

Commit

Permalink
Fix: do not change operator
Browse files Browse the repository at this point in the history
  • Loading branch information
oandregal committed Nov 27, 2023
1 parent 3b40375 commit a6bd57b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,9 @@ export default function FilterSummary( { filter, view, onChangeView } ) {
),
{
field: filter.field,
operator: OPERATOR_IN,
operator:
filterInView?.operator ||
filter.operators[ 0 ],
value:
activeElement?.value ===
element.value
Expand Down

0 comments on commit a6bd57b

Please sign in to comment.