Jira Plan Board:按标签过滤隐藏 epics 和故事点

Jira Plan Board: filtering by label hides epics and story points

我有一个 Jira Scrum 板,当我对其使用以下 JQL 查询时,我在计划板中看不到 epics 或故事点:

Team in ("Team 1", "Team 2") AND labels in (sprint8-candidate) ORDER BY Rank ASC

但是如果删除标签条件,那么我可以看到 epics 和故事点:

Team in ("Team 1", "Team 2") ORDER BY Rank ASC

谁能解释为什么按标签过滤会隐藏 epics 和故事点?

更新: 根据 Barnaby 的评论,如果我更改查询以包含它们,我可以看到 Epics:

(labels in (sprint8-candidate) OR type = Epic)

但我仍然看不到每期的故事点数:

更新 #2:故事点问题是因为我的组织中有人设置了第二个故事点字段,而我在看板配置估算设置中显示了错误的那个.

请记住,在 JIRA 中 epics 只是另一种问题类型。

基于标签选择的查询只会将问题关联到其中有标签的版块。如果 epics 没有标签,那么它们将被排除。

您可以将标签添加到 epics。但我不确定这是否是你想要的。

也可以制定 JQL 以包含 所有 epics,但仅包含具有标签的故事。

Barnaby 已经解释了如何显示 epics。您看不到故事点的事实可能是因为没有针对任何问题类型显示这些故事点。

我认为您的屏幕截图显示了功能(带有 + 图标的)和错误(带有 o 图标的),但默认情况下只有 epics 和故事会显示故事点。您也可以将其他问题类型与故事点中的估计相关联。如何做到这一点是 documented here。寻找 故事点

Estimation will be based on the number of Story Points per issue. This is the most commonly used option. By default, the Story Points field is only available to issues of type 'Story' or 'Epic' (not 'Bugs' etc). If you want to change this, do the following:

  1. Associate the Story Points field with other issue types, see custom field context (JIRA Admin documentation).
  2. Specify the screens that the Story Points field should be displayed on, see Defining a screen (JIRA Admin documentation).