sort the 'next' repot by id
This commit is contained in:
committed by
Dustin J. Mitchell
parent
ac53383aea
commit
febe6d8b68
@@ -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![
|
||||||
ascending: true,
|
Sort {
|
||||||
sort_by: SortBy::Uuid,
|
ascending: true,
|
||||||
}],
|
sort_by: SortBy::Id,
|
||||||
|
},
|
||||||
|
Sort {
|
||||||
|
ascending: true,
|
||||||
|
sort_by: SortBy::Uuid,
|
||||||
|
},
|
||||||
|
],
|
||||||
columns: vec![
|
columns: vec![
|
||||||
Column {
|
Column {
|
||||||
label: "id".to_owned(),
|
label: "id".to_owned(),
|
||||||
|
|||||||
Reference in New Issue
Block a user