Hello,
I want to add validator on multiple choice custom field like this:
customfield_10110.includes ("Option_A", "Option_B")
If there is Option A, or Option B in multilpe select custom field, to be able to transition issue on the next status.
Can you help me?
Using a build-your-own validator, you can use a Jira expression like:
issue.customfield_10110.some(it=>it.value == "option A" || it.value == "option B")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.