Hi,
I have a structure that shows children, subtasks and blockers.
Our problem is that it is difficult to differentiate the Blockers from the children. Is there a way to show blockers in a different color? or add some red arrow to them, or differentiate a blocker from a child item in the hierarchy in any way?
Thanks,
Iris
Hello @Iris Barr
If in your structure, issues under Epics are linked to Epics by:
Then you can simply use a formula like this:
if parent{issuetype = "epic"} and !epiclink : "Blocker"
The formula will return Blocker for each issue that is connected to an Epic with the 'Blocks' link type.
But if other link types can be present and you specifically need to consider just the 'Blocks' link, you can try this formula:
if parent{issuetype = "epic"} and (issuelinks.filter($.type = 'blocks').destination or issuelinks.filter($.type = 'blocks').source) : "Blocker"
You can make the values more noticeable by adding coloring via Markdown.
I hope this helps. If you need further assistance, please reach out to us directly at our support portal.
Best regards,
Stepan Kholodov
Tempo
Hello @Iris Barr ,
Welcome to the Community!
This would require the issuelinks attribute to be available for use in Structure Cloud. Unfortunately, it's not available yet. We do have a task related to this and I have added your vote.
I will follow up with you when there is an update to share.
Best,
David
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.