3

In Jira Agile. In the Work view. When an issue has no tasks it looses its prioriy and goes down the page in the "other issues" section.

Is there a way to fix this?

Thanks.

jessehouwing
  • 106,458
  • 22
  • 256
  • 341
ramon_salla
  • 1,587
  • 1
  • 17
  • 35

1 Answers1

0

In the board's configuration, go to Swimlanes > Base Swimlanes on: Query.

For the JQL of the query, enter: ORDER BY Priority

This will order issues only by Priority, so that High priority issues with no subtasks will be above low priority issues with many subtasks.

  • This is a great idea, but I already tried it and it doesn't suit our requirements. We need to keep a single issue (with subtasks) in a single row (swimlane). And when grouping by query it only shows a single swimlane with all the issues in it, loosing clear visibility on what is happening! – ramon_salla Jun 10 '14 at 07:16
  • 1
    Update your board's Saved Filter to exclude sub-tasks by adding this to the JQL: "AND type != Sub-task". This will stop the sub-tasks from being displayed. – Paul Schnau Jun 10 '14 at 15:56