diff --git a/gui/src/app/state/mod.rs b/gui/src/app/state/mod.rs index 7d45b02d..a7a9c4d1 100644 --- a/gui/src/app/state/mod.rs +++ b/gui/src/app/state/mod.rs @@ -184,6 +184,7 @@ impl State for Home { Ok(events) => { self.warning = None; self.events = events; + self.events.sort_by(|a, b| b.time.cmp(&a.time)); } }, Message::HistoryTransactionsExtension(res) => match res {