Hello,
I've created a Kanban board in a company-managed Jira Cloud project. The setting for "Hide completed issues older than" is set to "1 week", but we need it to be less than that, let's say 2 days.
How can I change the board filter so that it shows all issues as before, but when it comes to completed issues it only shows the ones older than 2 days?
Apoend the below to board filter with query
OR resolved <= -2d
This will show the issues that are resolved before 2 days
Thanks
When it comes to resolved issues I only want to display the ones which have been resolved in the past two days, nothing older than that.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Let the board query filter be as it is
You need to change the board sub filter. Update the query to
fixVersion in unreleasedVersions() OR fixVersion is EMPTY or resolved >= -2d
Let the hide completed issues be as it is for 2 weeks by default. We don't need to change that
Please let me know if this works for you
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I also don't want to display only issues which have been resolved in the past two days. I want the others with different statuses as well.
Basically, I want to set "Hide completed issues older than" to "2 days".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This should work
fixVersion in unreleasedVersions() OR fixVersion is EMPTY or resolved >= -2d OR resolution = EMPTY
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.