Help is on the way! To mark it as solved, use the /solve command. In the meantime, here are some existing threads that may help you:
#Assert two fields aren't equal
2 messages · Page 1 of 1 (latest)
2 messages · Page 1 of 1 (latest)
Help is on the way! To mark it as solved, use the /solve command. In the meantime, here are some existing threads that may help you:
I "solved" (?) this using the following method:
validate: (value, ctx) => {
if (
value ===
(ctx.siblingData as Partial<any>).homeSquad
) {
return "Home and away squads must be different"
}
// @ts-ignore
return relationship(value, ctx)
},```