Hello,
I have a custom field of type Single user Picker that I want to put in an email template
I am using: $issue.getCustomFieldValue($customField).fullName
but this doesn't resolve to anything.
I also tried: $issue.getCustomFieldValue($customField).getUserValue().fullName
but it still doesn't work.
What type of object does $issue.getCustomFieldValue($customField) return for Single User Picker custom field?
If anyone is wondering, the solution is to use:
$issue.getCustomFieldValue($customField).getDisplayName()
Using: $issue.getCustomFieldValue($customField)
returns: astoica(JIRAUSER10589)
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.