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(
|
reports.insert(
|
||||||
"next".to_owned(),
|
"next".to_owned(),
|
||||||
Report {
|
Report {
|
||||||
sort: vec![Sort {
|
sort: vec![
|
||||||
|
Sort {
|
||||||
|
ascending: true,
|
||||||
|
sort_by: SortBy::Id,
|
||||||
|
},
|
||||||
|
Sort {
|
||||||
ascending: true,
|
ascending: true,
|
||||||
sort_by: SortBy::Uuid,
|
sort_by: SortBy::Uuid,
|
||||||
}],
|
},
|
||||||
|
],
|
||||||
columns: vec![
|
columns: vec![
|
||||||
Column {
|
Column {
|
||||||
label: "id".to_owned(),
|
label: "id".to_owned(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue