Issue List Gadget

Quick Filters

Quick Filters add clickable buttons above the Issue List table. One click instantly filters the table to a preset view - no re-configuration needed.

Quick Filters

How Quick Filters Work

Each Quick Filter button applies a JQL condition to the current issue set. When clicked, the table reloads showing only issues that match. Click the button again to deactivate it.

Multiple filters can be active at the same time - AND/OR logic controls how they combine.

How to Add a Quick Filter

  1. Open the Issue List gadget in edit mode
  2. In the right panel, find the Quick Filters section
  3. Click + Add filter
  4. Enter a label (e.g., "My Issues")
  5. Enter the JQL condition
  6. Save the gadget

Quick Filter Ideas

Button LabelJQL Condition
My Issuesassignee = currentUser()
Bugs Onlyissuetype = Bug
High Prioritypriority in (High, Highest)
Due This Weekduedate >= startOfWeek() AND duedate <= endOfWeek()
Unassignedassignee is EMPTY
Blockedlabels = blocked
Overdueduedate < now() AND resolution is EMPTY
This Sprintsprint in openSprints()
Recently Updatedupdated >= -7d

AND vs OR Logic

When multiple Quick Filters are active, you choose how they combine:

AND vs OR

ModeBehaviorExample
ANDIssues must match ALL active filters"My Issues" AND "High Priority" → only my high-priority issues
ORIssues must match ANY active filter"My Issues" OR "Unassigned" → all issues assigned to me or to nobody

Use AND when you want to narrow the result - e.g., "show only bugs that are also unassigned."

Use OR when you want to broaden the result - e.g., "show anything that's either a bug or overdue."