i'm trying to add validator on my work flow, with basiaclly to verify that a certain custom field has a certain value.
when doing just verifiction on not null - it works ok:
issue.customfield_17645 != null
but when doing a specific value like this:
issue.customfield_17645 == 'bug'
(i get this message: "operator \\\"==\\\" is not applicable to types: Map and String\"],\"errors\":{}}""
doing that to global field (like type) works ok, but i need it to custom field.
is there an option that i can add it?
A little late answer, sorry :) For any others having similar problem, here is the solution:
You need to add ".value" to the end of customfield name:
issue.customfield_17645.value == 'bug'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.