From 635c0ec288f3f033dec07fa3632fe884a47842cb Mon Sep 17 00:00:00 2001 From: lilydjwg Date: Sat, 24 Jan 2026 17:45:31 +0800 Subject: fix(ui): time column can take up to 9 cells --- crates/atuin-client/src/settings.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/atuin-client/src/settings.rs b/crates/atuin-client/src/settings.rs index bfe9278d..916172ba 100644 --- a/crates/atuin-client/src/settings.rs +++ b/crates/atuin-client/src/settings.rs @@ -479,7 +479,7 @@ impl UiColumnType { pub fn default_width(&self) -> u16 { match self { UiColumnType::Duration => 5, - UiColumnType::Time => 8, // "59m ago" with padding + UiColumnType::Time => 9, // "459ms ago" with padding UiColumnType::Datetime => 16, // "2025-01-22 14:35" UiColumnType::Directory => 20, UiColumnType::Host => 15, -- cgit v1.3.1