Skip to main content
Skip table of contents

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:

CODE
issue in linkedIssues(value("Key_[issuekey]")) ORDER BY Rank

Smart Sub-tasks

Get all sub-tasks of the current issue.

JQL query:

CODE
parent = value("Key_[issuekey]") ORDER BY Rank

Smart Issues In Epic

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

JQL query:

CODE
"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:

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

All Unresolved Issues

List all unresolved issues in the current project.

JQL query:

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

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.