I have a Jira Scrum board and when I use the following JQL query for it, I cannot see the epics or story points in the plan board:
Team in ("Team 1", "Team 2") AND labels in (sprint8-candidate) ORDER BY Rank ASC
but if a remove the label condition, then I can see the epics and story points:
Team in ("Team 1", "Team 2") ORDER BY Rank ASC
Can anyone explain why filtering by label would hide the epics and story points?
Update: as per Barnaby's comment, I can see the Epics if I change the query to include them:
(labels in (sprint8-candidate) OR type = Epic)
But I still can't see the story points per issue:
Update #2: the story point issue was because someone in my org has set up a second story point field and I was displaying the wrong one in the board Configuration Estimation settings.