aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/handler.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/handler.rs')
-rw-r--r--src/frontend/handler.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/handler.rs b/src/frontend/handler.rs
index 70ba5c7..ec1647e 100644
--- a/src/frontend/handler.rs
+++ b/src/frontend/handler.rs
@@ -122,7 +122,7 @@ pub fn handle_key_events(key_event: KeyEvent, app: &mut App, tui: &mut Tui) -> R
app.select_last_entry();
}
KeyCode::Char('s') => {
- app.entry_table.sort_entry_table("author");
+ app.entry_table.sort_entry_table("author", true);
}
KeyCode::Char('y') => {
App::yank_text(&app.get_selected_citekey());