How to order tickets by ticket name and ticket number in JIRA?

I have a JARA AAA project and lots of tickets like AAA1, AAA2, AAA3

I would like to find tickets ordered by name and ticket number, so it shows the following:

AAA1 AAA2 AAA3 

What keyword should I use for the filter?

I tried using "order by Created", most of the tickets are displayed in order, but the one that was moved from another project is not in order, because it was created earlier in another project.

+6
source share
1 answer

In the JQL query, complete the query with:

ORDER BY key

+13
source

Source: https://habr.com/ru/post/982335/


All Articles