Smart Panel for Jira Cloud

Example Smart Issue Panel

What is an "Example Smart Issue Panel"?

The Issue Panel is an additional panel in the issue view screen. The panel contains a list of issues based on a dynamic search.

Example Smart Issue Panels are the list of issue panels that the app generate when you install the app:

  • Smart Issue Links: Customizable Issue Links panel

  • Smart Issues In Epic: Customizable Issues In Epic panel

  • Smart Sub-tasks: Customizable Sub-tasks panel

  • Currently Working On: List all issues in the current project, assigned to the current user and are not resolved

  • All Unresolved Issues: List all unresolved issues in the current project

On this page


Get all issues linked with the current issue.

JQL query:

issue in linkedIssues(value("Key_[issuekey]")) ORDER BY Rank
image-20221012-085552.png

Smart Sub-tasks

Get all sub-tasks of the current issue.

JQL query:

parent = value("Key_[issuekey]") ORDER BY Rank
image-20221012-090027.png

Smart Issues In Epic

Get all issues in the current Epic (if viewing an Epic).

JQL query:

"Epic Link" = value("Key_[issuekey]") ORDER BY Rank

Currently Working On

List all unresolved issues of the current project that are assigned to the current user.

JQL query:

assignee = currentUser() AND project = value("Project_[project]") AND resolution = Unresolved

All Unresolved Issues

List all unresolved issues in the current project.

JQL query:

project = value("Project_[project]") AND resolution = Unresolved