2
0

🚑 (condition) Fix not contains condition on list variable

This commit is contained in:
Baptiste Arnaud
2024-04-15 08:02:53 +02:00
parent f9bdcdc7a3
commit 4982400a4f

View File

@ -57,7 +57,7 @@ const executeComparison =
return a.normalize() !== b.normalize()
return a !== b
}
return compare(notEqual, inputValue, value, 'some')
return compare(notEqual, inputValue, value)
}
const notContains = (a: string | null, b: string | null) => {
if (b === '' || !b || !a) return true