Skip to content

Commit

Permalink
Fix filter not applying in dimension table (rilldata#3921)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaHegde committed Jan 29, 2024
1 parent a36cd22 commit a82cbe9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ export function updateFilterOnSearch(
filterExpressions(
filterForDimension,
(e) =>
e.cond?.op === V1Operation.OPERATION_LIKE ||
e.cond?.op === V1Operation.OPERATION_NLIKE,
e.cond?.op !== V1Operation.OPERATION_LIKE &&
e.cond?.op !== V1Operation.OPERATION_NLIKE,
) ?? createAndExpression([]);
}
return filterForDimension;
Expand Down

0 comments on commit a82cbe9

Please sign in to comment.