Remove either the label use-case-smart-text or use-case-smart-number depending on the feature the use case is based on

Use case

Return the display name of the latest user who changed the assignee.

Expression

Create and configure a Smart field using this expression in Jira expression mode:

issue.changelogs.filter(changelog => changelog.items.some(item => item.fieldId == 'assignee')).map(changelog => changelog.author.displayName)[0] || ""


 

Feature

Field type

Smart text field

Parsing mode

Jira expression

Expression
issue.changelogs.filter(changelog => changelog.items.some(item => item.fieldId == 'assignee')).map(changelog => changelog.author.displayName)[0] || ""
Label
Use case description

Return the display name of the latest user who changed the assignee.

Complexity