From 3fc4aaa2a141efaf641445878337f9bbb6f204d0 Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 21 Nov 2023 18:23:30 +0100 Subject: [PATCH] fix(filter): allow filtering on "in" condition --- pkg/models/task_collection_filter.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/models/task_collection_filter.go b/pkg/models/task_collection_filter.go index f0019fd6e..6eabd3fee 100644 --- a/pkg/models/task_collection_filter.go +++ b/pkg/models/task_collection_filter.go @@ -222,6 +222,8 @@ func getFilterComparatorFromOp(op fexpr.SignOp) (taskFilterComparator, error) { return taskFilterComparatorNotEquals, nil case fexpr.SignLike: return taskFilterComparatorLike, nil + case fexpr.SignAnyEq: + fallthrough case "in": return taskFilterComparatorIn, nil default: