mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
sort the 'next' repot by id
This commit is contained in:
parent
ac53383aea
commit
febe6d8b68
1 changed files with 10 additions and 4 deletions
|
@ -187,10 +187,16 @@ impl Default for Settings {
|
|||
reports.insert(
|
||||
"next".to_owned(),
|
||||
Report {
|
||||
sort: vec![Sort {
|
||||
sort: vec![
|
||||
Sort {
|
||||
ascending: true,
|
||||
sort_by: SortBy::Id,
|
||||
},
|
||||
Sort {
|
||||
ascending: true,
|
||||
sort_by: SortBy::Uuid,
|
||||
}],
|
||||
},
|
||||
],
|
||||
columns: vec![
|
||||
Column {
|
||||
label: "id".to_owned(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue