Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Kanban roadmap not available despite filter query with only one project

Jacek Zajączkowski December 22, 2022

Hi!

I set up two kanban boards within the same project but Roadmap isn't available. I get prompt saying "Your JQL filter contains issues from outside this project. To use your roadmap, adjust the board filter to include issues from X" The problem is my query is already:

project = "X" AND labels = frontend OR labels = php ORDER BY Rank ASC

 So I limited it to one project only on both Kanband boards, the only difference between them is different lables. What's interesting, when I delete all or one label from query Roadmap works! But I want to keep labels to filter tasks on my boards.

2 answers

2 accepted

1 vote
Answer accepted
Mikael Sandberg
Community Champion
December 22, 2022

It is because of your OR in the JQL, the way you have configured the JQL means that you will get issues in project X with the label frontend OR any issues from any project with the label php. To limit your JQL to only project X your JQL needs to look like this:

project = "X" AND (labels = frontend OR labels = php) ORDER BY Rank ASC

This would now mean that in project X, only show me issues with the label frontend OR php. 

Another way to write this JQL would like this:

project = "X" AND labels in (frontend, php) ORDER BY Rank ASC
Jacek Zajączkowski December 22, 2022

Thanks :)

1 vote
Answer accepted
Dave Mathijs
Community Champion
December 22, 2022

Hi @Jacek Zajączkowski is this a company-managed or a team-managed project?

Try to change your JQL query as follows: 

project = "X" AND (labels = frontend OR labels = php) ORDER BY Rank ASC
Jacek Zajączkowski December 22, 2022

It works! Thank you!

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
FREE
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events