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.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.