I have issues on my Kanban board that I am working on. When I send it to "review" and change the assignee it disappears from my board. how do I change an assignee but still have my board show the issue I sent for review? Thanks
Hi @Michael Minoza,
The issue displayed in the kanban depends on the query conditions in the kanban configuration, you can modify it according to your requirements.
Sorry i'm really new to this and to any form of programming/query, below is the query I currently have for the board:
assignee in (Michael.Minoza) AND (status in ("In Progress", "To Do", Review, InProgress, Reveiw) OR resolutiondate >= -1w) ORDER BY Rank ASC
Where would I add the query conditon to?
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.
Hello @Michael Minoza and welcome to the community.
As long as you have assignee in (Michael.Minoza) AND ([...]) as part of your boards query issues will always "disappear" as soon as they're assigned to somebody else.
This heavily depends on what exactly you're trying to achieve here but maybe something like this may do the trick:
(assignee in (Michael.Minoza) AND (status in ("In Progress", "To Do", Review, InProgress, Reveiw) OR resolutiondate >= -1w)) OR assignee was currentUser() 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.