Forums

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

Issues not showing on board

Lana Kelly
Contributor
October 4, 2023

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.

Screenshot 2023-10-04 at 16.37.17.png

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.

Screenshot 2023-10-04 at 16.42.49.png

This is where our columns are matched to statuses:

Screenshot 2023-10-04 at 16.39.09.png

So you can see there are issues in "to do" and "draft".  Here's the filters screen

Screenshot 2023-10-04 at 16.40.02.png

And these are my only options under project settings:

Screenshot 2023-10-04 at 16.40.18.png

There will be some small setting somewhere I'm missing, I'm sure.  Thanks in advance for your help!

1 answer

1 accepted

2 votes
Answer accepted
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 15, 2018

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:

https://marketplace.atlassian.com/apps/43318/power-scripts-jira-script-automation?hosting=cloud&tab=overview

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

danielsandy
October 15, 2018

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.

Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 15, 2018

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}
}

Suggest an answer

Log in or Sign up to answer