In instead of ContainsAny

This commit is contained in:
Adria Navarro 2023-10-03 16:58:39 +02:00
parent 0053103974
commit dbd5f7a134
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ export const getValidOperatorsForType = (
if (type.multiple) { if (type.multiple) {
ops = [Op.Contains, Op.NotContains, Op.ContainsAny, Op.Empty, Op.NotEmpty] ops = [Op.Contains, Op.NotContains, Op.ContainsAny, Op.Empty, Op.NotEmpty]
} else { } else {
ops = [Op.Equals, Op.NotEquals, Op.Empty, Op.NotEmpty, Op.ContainsAny] ops = [Op.Equals, Op.NotEquals, Op.Empty, Op.NotEmpty, Op.In]
} }
} }