Hi,
One one of my workflow transitions, I need to set the value of my field "Support Team" back to it's previous value. This field is a single user group picker.
And the automation throws errors like this:
(Class com.atlassian.jira.issue.fields.rest.json.beans.GroupJsonBean), not marked as ignorable at [Source: N/A; line: -1, column: -1] (through reference chain: com.atlassian.jira.issue.fields.rest.json.beans.GroupJsonBean["id"]) (customfield_10132))
I can't find documentation on how to set to a previous value of a user group picker. Can anyone give me a little guidance?
Thanks.
For Single Group Pickers the fromString, there is a square bracket in the value :
Try creating a variable with the below smart value, and updating the field with the variable:
{{fieldChange.fromString.substringAfter("[").substringBefore("]").trim()}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.