Use relative time for update_checked in detail view

This commit is contained in:
lashman
2026-02-28 01:54:51 +02:00
parent 7697983045
commit 86b047572a

View File

@@ -634,7 +634,7 @@ fn build_overview_tab(record: &AppImageRecord, db: &Rc<Database>) -> gtk::Box {
if let Some(ref checked) = record.update_checked {
let row = adw::ActionRow::builder()
.title("Last checked")
.subtitle(checked)
.subtitle(&widgets::relative_time(checked))
.build();
updates_group.add(&row);
}