fix: force string compare (#9360)

fixes CC-536
This commit is contained in:
Sebastian Rindom
2024-09-29 13:48:21 +02:00
committed by GitHub
parent 1b4372ae71
commit aef6b290b4

View File

@@ -83,7 +83,7 @@ export function isContextValid(
const contextValue = pickValueFromObject(attribute, context)
return operatorsPredicate[operator](
contextValue,
`${contextValue}`,
value as string & string[]
)
}