Hi,
i wanted set the Developer field values as same in assignee field in a transition screen.
I've tried with Groovy script ( set field value ) on post function.
Below is the code snip:
if(issue.getIssueTypeObject().getName()=="Bug")
{
issue.get("assignee")?.getName()
}
it complies without any error but the screen doesn't showing the expected result.
Any suggestions on this ?