🚑 (condition) Fix not contains condition on list variable
This commit is contained in:
@@ -57,7 +57,7 @@ const executeComparison =
|
|||||||
return a.normalize() !== b.normalize()
|
return a.normalize() !== b.normalize()
|
||||||
return a !== b
|
return a !== b
|
||||||
}
|
}
|
||||||
return compare(notEqual, inputValue, value, 'some')
|
return compare(notEqual, inputValue, value)
|
||||||
}
|
}
|
||||||
const notContains = (a: string | null, b: string | null) => {
|
const notContains = (a: string | null, b: string | null) => {
|
||||||
if (b === '' || !b || !a) return true
|
if (b === '' || !b || !a) return true
|
||||||
|
|||||||
Reference in New Issue
Block a user