Hello!
Since a week, I have noticed a section "Child Issues" in the issue view of my instance. I do not remember configuring this, and would like to blend this out.
I suspect this has to do with "Jira Advanced Roadmaps", but can not find any related setting.
Thank you for your support and kind regards,
Simon
I had the same requirement and solved it another way. (Note: we run a Data Center JIRA version, so I didn't test it on Cloud version.)
Behaviours only allow you to change how fields behave on issue Create or Update screens, as explained e.g. here https://library.adaptavist.com/entity/basics-behaviours-set-hidden
In the issue main screen, the "Child Issues" is a separate panel, so we can show or hide it with Fragments.
You can add a condition, e.g. I was hiding this panel only for projects of a specific category using:
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.customfields.option.Option
import com.atlassian.jira.issue.Issue
if(jiraHelper.project?.projectCategory?.name == "Project Category X"){
return false // false: hide the panel
}
return true // else true. show the panel
This avoid us to modify any HTML code on the UI.
What would the syntax be to hide this panel for multiple projects based on Key?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
From what I recall, it might be visible if this Issue Type is above Epic in the Advanced Roadmaps hierarchy.
I'd check if it is as a first step...
In terms of hiding it, I don't believe there's an option natively. What's the need to hide it, given it is required for Advanced Roadmaps?
Ste
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.