You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
For a transition post function I'm trying to retrieve and use the user id values added into a multi-user picker custom field. I set a string array equal to the field values:
string [] values = #{my multi user picker field};
Then I try to set the value of a single line text field to the first index of the array:
string first_value = arrayGetElement( values, 1);
#(my text field} = first_value;
When I try to run the transition, I just get the working spinning wheel and then it gives up and nothing happens. I am not sure if the first index is 0 or 1, but there are 3 values so should work. Are the individual values stored in the user picker just strings, or a special user type? I see them as user ids when you first enter them, but then shown as {Last Name, First Name} when viewing the issue.