diff options
| author | lilydjwg <lilydjwg@gmail.com> | 2026-01-24 17:45:31 +0800 |
|---|---|---|
| committer | lilydjwg <lilydjwg@gmail.com> | 2026-01-24 18:13:29 +0800 |
| commit | 635c0ec288f3f033dec07fa3632fe884a47842cb (patch) | |
| tree | 4ef36bc125f3b9d8f8a50c689b3a045cc7ca3495 | |
| parent | fix(ui): don't draw a leading space for command (diff) | |
| download | atuin-635c0ec288f3f033dec07fa3632fe884a47842cb.zip | |
fix(ui): time column can take up to 9 cells
| -rw-r--r-- | crates/atuin-client/src/settings.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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, |
