Hello,
I am having trouble filtering by component.
My default filter is this:
project = "Project" and ORDER BY Rank DESC
Then I added the component "Archived" to my project and tagged some issues with it, while other issues did not have this component on them.
When I modify the filter like this:
project = "Project" and component! = Archived ORDER BY Rank DESC
All the issues with the "Archived" tag are removed but also some issues (not all of them) that don't have the "Archived" tag are removed as well. it's very strange.
My status are correctly mapped out (see screenshot attached)
*(In Kanban mode)Another strange thing that I noticed is that some epics appear as cards (purple color) in the backlog and some epics don't (i.e. you can only see the epic link in the tasks in the backlog view). I am not sure what is causing this behavior. Is it a particular setting in each epic, etc...
* So this component filtering problem happens in kanban mode. But the same thing happens in sprint mode (in sprint mode I noticed that you cannot put epic cards in the backlog view but you can still see the epic section from the left side menu) Again when I modify the filter, some issues are that not tagged with component "Archived" get filtered out. it's strange...
What could cause this?
Thanks
Gabriel
Hi there,
What about this?
project = "Project" AND (component NOT IN (Archived) OR component IS EMPTY) ORDER BY Rank DESC
Hi @gabriel.olteanu ,
The solution in this case is very simple I think. Your current JQL will only select issues with components and where no archive component is present.
Change it to
project = "Project" and (component! = Archived or component is empty) ORDER BY Rank DESC
And it should work as you want.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks guys,
also what about my other comment:
So I have some epics in the kanban mode that appear as a card and some epics (relatively new ones) that don't show up as cards in the backlog view...
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.