Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

UI Text Box
sizemedium
typeinfo

Use case

Return the keys of the sub-tasks that do not have original estimate or story points estimate.

Expression

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

Code Block
languagejs
linenumberstrue
issue.subtasks.filter(s => s?.originalEstimate == null && s?.customfield_10016 == null).map(i => i.key).join(", ")


Page properties
hiddentrue
Feature

Field type

Smart text field

Parsing mode

Jira expression

Expression
Code Block
languagejs
linenumberstrue
issue.subtasks.filter(s => s?.originalEstimate == null && s?.customfield_10016 == null).map(i => i.key).join(", ") 
Label
Use case description

Return the keys of the sub-tasks that do not have original estimate or story points estimate.

Complexity

 

Status
titleINTERMEDIATE