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: