Sub Task .1.JPGSub Task .2.JPG
When clicking on an issue/task on a scrum board, it generates a small dashboard to the right which lists "details, people, estimates" etc etc (Whatever assigned to the task). I'm having difficulty with allowing it to show the sub-tasks however (As shown above). Is it possible to get it to show "Sub Test 1.1" and "Sub Test 2.1" in said dashboard, or any other sub-tasks that may be added in future? (Instead as you can see it displays "2 sub-tasks are being filtered by the board's Saved Filter")
Assuming it may be something to do with the "Saved Filter", I had a check, but still not too sure. Any help is most appreciated.
Hi,
The problem is that the board's saved filter filters out the sub-tasks. You'll need to change the saved filter's query to allow them to show.
Hi thank you for the reply, I am still quite new to Jira, and have yet to touch on this. Can you advise what query will allow it to show?
Or alternatively where I can learn about JIRA filter queries
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can learn more about filers here - https://confluence.atlassian.com/agile/jira-agile-user-s-guide/configuring-a-board/configuring-filters
And about the queries - https://confluence.atlassian.com/jirasoftwarecloud/advanced-searching-764478330.html
If you share your query I may be able to help you fix it.
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.
Hi again, I'm still a fair bit unsure. Correct me if I'm wrong, but the links you provided only demonstrate how to filter a search. What I'm after is getting the Sub-tasks to show on the second image instead of it saying "2 Sub-Tasks are being filtered by the boards Saved-filter". (They show fine when you click on the task as shown on the first image, would just like it on the initial scrum board view for convenience)
Sorry if you were right to suggest what you did, just having a hard time getting to grips with it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The "Saved Filter" is a normal JIRA filter with JQL query. You need to navigate to this board's "Saved Filter" and edit the JQL query in a way that would show the sub-tasks (you can use the links above to help you with this).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The problem is similar, and adjusting the filter did not help. Rather, it is correct, since when viewing the data of filtration results, these tasks are in the results.
I wanted to identify dependencies - there is no dependency - two subtasks with the same properties (type, component, assignee) in one task are displayed, in another task they are marked as filtered.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just add
AND issuetype in (story, sub-task)
to the query of the boards' saved filter to explicitly include subtasks. They are excluded by default.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Couple of things to check:
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.