sort the 'next' repot by id

This commit is contained in:
Dustin J. Mitchell 2021-05-09 20:58:33 -04:00 committed by Dustin J. Mitchell
parent ac53383aea
commit febe6d8b68

View file

@ -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(),