Hello,
Is there anyway to change the default issue type displayed in a team managed project board ?
The default one is TASK. On my board I want to display the epics. I didn't find how to do it or how to change the query of my board (as we can do in a company managed project)
Hi ,
I think you can use the below filter it will list out all the sub-task issue type issues
issuetype in subtaskIssueTypes()
Hello,
I think your JQL query would look like this:
issuetype = <your subtask type>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I wanted to find all the issues that were using the Sub-Task of "Performance Test".. so I used the above and just added a little to it:
issuetype in subTaskIssueTypes() and issuetype = "Performance Test"
This way I can narrow down only see the one Sub-Task I want.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am trying to do this exact thing but this isn't working for me
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.