tweak the list jql for more visually pleasing ordering
This commit is contained in:
parent
a3352aa892
commit
054d66bf9c
1 changed files with 2 additions and 1 deletions
|
@ -19,7 +19,8 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|||
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?,
|
||||
|
|
Loading…
Reference in a new issue