Jira 看板不显示卡片,尽管似乎存在问题
Jira Kanban board does not show cards, although there seem to be issues
从一天到另一天,稍微更改问题过滤器,我在 JIRA 中的看板板的板配置变成空的。我在板配置中使用以下 JQL 作为过滤器:
project = "My amazing project" and fixVersion in unreleasedVersions()
ORDER BY priority DESC
以上过滤器不起作用。不过,有效的是
project = "My amazing project" and fixVersion = "v1337"
ORDER BY priority DESC
有趣的是,第一个查询在 JIRA 的问题浏览器中有效,并返回了我期望的 11 个结果。正如您在下面的屏幕截图中看到的,我没有启用快速过滤器。我既没有添加任何子过滤器,也没有隐藏任何旧问题。 所有卡片都去哪儿了?
我正在使用 Atlassian Jira 项目管理软件 (v8.2.3#802003-sha1:5986657),我不是该安装的管理员,只是该项目的管理员。
进一步阅读
有个dedicated problem page provided by Atlassian:
Symptoms
The issues are not visible in Kanban board, but when you are in board configurations >> columns you can see number of issues.
Cause
As Kanban board deals with version of the issues, the field named Fix Version/s should not be hidden
This is because the default Kanban board sub-filter(Board Configure >> General) has been set to
fixVersion in unreleasedVersions() OR fixVersion is EMPTY
该页面还描述了一个相当复杂的解决方法。我的解决方法要简单得多:
- 仅将 JQL 查询更改为
project = "My amazing project"
。
- 创建子过滤器
fixVersion in unreleasedVersions() ORDER BY priority DESC
。
我不明白为什么必须这样,但它确实起作用了。
从一天到另一天,稍微更改问题过滤器,我在 JIRA 中的看板板的板配置变成空的。我在板配置中使用以下 JQL 作为过滤器:
project = "My amazing project" and fixVersion in unreleasedVersions()
ORDER BY priority DESC
以上过滤器不起作用。不过,有效的是
project = "My amazing project" and fixVersion = "v1337"
ORDER BY priority DESC
有趣的是,第一个查询在 JIRA 的问题浏览器中有效,并返回了我期望的 11 个结果。正如您在下面的屏幕截图中看到的,我没有启用快速过滤器。我既没有添加任何子过滤器,也没有隐藏任何旧问题。 所有卡片都去哪儿了?
我正在使用 Atlassian Jira 项目管理软件 (v8.2.3#802003-sha1:5986657),我不是该安装的管理员,只是该项目的管理员。
进一步阅读
有个dedicated problem page provided by Atlassian:
Symptoms
The issues are not visible in Kanban board, but when you are in board configurations >> columns you can see number of issues.
Cause
As Kanban board deals with version of the issues, the field named Fix Version/s should not be hidden This is because the default Kanban board sub-filter(Board Configure >> General) has been set to
fixVersion in unreleasedVersions() OR fixVersion is EMPTY
该页面还描述了一个相当复杂的解决方法。我的解决方法要简单得多:
- 仅将 JQL 查询更改为
project = "My amazing project"
。 - 创建子过滤器
fixVersion in unreleasedVersions() ORDER BY priority DESC
。
我不明白为什么必须这样,但它确实起作用了。