From 054d66bf9c63f032634911729c49836296af9694 Mon Sep 17 00:00:00 2001 From: Daan Boerlage Date: Tue, 21 Jan 2025 22:17:07 +0100 Subject: [PATCH] tweak the list jql for more visually pleasing ordering --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 33d5ec2..3cc832c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,7 +19,8 @@ async fn main() -> Result<(), Box> { markdown_file, } => cmd::create::create(project, open, markdown_file).await?, Commands::List { output } => { - let jql = "assignee = currentUser() AND resolution = Unresolved order by updated DESC"; + let jql = + "assignee = currentUser() AND resolution = Unresolved order by project,updated ASC"; cmd::search::exec(output, jql).await? } Commands::Search { output, jql } => cmd::search::exec(output, &jql).await?,