Skip to content

Commit

Permalink
Merge pull request #80 from beabee-communityrm/hotfix/empty-non-empty…
Browse files Browse the repository at this point in the history
…-tags

fix(contact-tagging): Fix Tag Filter Logic
  • Loading branch information
JumpLink authored Nov 15, 2024
2 parents 6d4bc44 + 6b88e9f commit ccbf0a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/backend/src/api/transformers/TagTransformer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ export class TagTransformer<
}

const inOp =
args.operator === "not_contains" || args.operator === "is_not_empty"
args.operator === "not_contains" || args.operator === "is_empty"
? "NOT IN"
: "IN";

Expand Down

0 comments on commit ccbf0a3

Please sign in to comment.