Hi,
I am making a custom field with the Jira:customField module in Forge.
I want to create a validation expression:
validation:
expression: value == null || value == [] || value.every(x => x.match("[A-Z]{2,}-\\d+"))
errorMessage: The value must consist only of Jira keys
But then I alwasy get the following error:
What am I doing wrong?
Thanks.