Hello!
Can anyone explain why, when I tried to use the following construction
{{#lookupIssues}}
{{#issuelinks}}
{{#outwardIssue}}
{{#if(equals(status.name, “Done”))}}
{{key}}
{{/}}
{{/}}
{{/}}
{{/}}
it didn't work, I got an empty response, even though there is a task with the status Done among the tasks.
I have resolved the issue.
Solution:
{{#lookupIssues}}
{{#issuelinks}}
{{#if(equals(type.name, “Cloners”))}}
{{#if(not(equals(outwardIssue.statusCategory.name, “Done”)))}}
{{outwardIssue}}
{{/}}
{{/}}
{{/}}
{{/}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.