tui: Sort issues by time and state

This commit is contained in:
Erik Kundt 2023-07-03 13:44:23 +02:00 committed by Alexis Sellier
parent 2d84791402
commit dcfd481424
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ impl IssueBrowser {
}
items.sort_by(|a, b| b.timestamp().cmp(a.timestamp()));
items.sort_by(|a, b| a.state().cmp(b.state()));
items.sort_by(|a, b| b.state().cmp(a.state()));
let table = Widget::new(Table::new(&items, header, widths, theme.clone()))
.highlight(theme.colors.item_list_highlighted_bg);

View File

@ -34,7 +34,7 @@ impl LargeList {
.collect::<Vec<_>>();
items.sort_by(|a, b| b.timestamp().cmp(a.timestamp()));
items.sort_by(|a, b| a.state().cmp(b.state()));
items.sort_by(|a, b| b.state().cmp(a.state()));
let selected =
selected.map(|(id, issue)| IssueItem::from((context.profile(), repo, id, issue)));