Time for my daily Jira question!
We have a team-managed board, where none of the issues are showing on the board. There seems to be some sort of default filter, but I can't figure out how to remove or edit it.
We've made our epic "Document," and while we have epics in To Do and Draft, they're not showing.
Where does that "Issues without Document" filter come from, and how can I change it? Even when you sort by assignee, it only "shows" the negative results, and not the issues that have assignees.
This is where our columns are matched to statuses:
So you can see there are issues in "to do" and "draft". Here's the filters screen
And these are my only options under project settings:
There will be some small setting somewhere I'm missing, I'm sure. Thanks in advance for your help!
Hello,
I am not sure what you mean by respected. Do you mean that you want the values of your custom field to be copied to the Story Points Field?
If so then you would need an add-on. For example, you could use the Power Scripts add-on:
You could write a listener for the Update Issue event with a code like this:
#{Story Points} = #{your custom field name}This listener would update the Story Points field with the Custom field value every time an issue is updated.
You can find more info about listeners here:
https://confluence.cprime.io/pages/viewpage.action?pageId=6558205
Hi @Alexey Matveev,
Thanks for your answer. Could you please tell me it will affect all the project in JIRA ??. Because i want to change only one project.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you need it for one project you could write a script like this:
if (project == "your project key") {
#{Story Points} = #{your custom field name}
}
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.