refactor: Do not specify default max_len for list columns

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-09-08 18:59:20 -03:00
parent 36a584113d
commit c9c3e2eb7e

View File

@@ -233,19 +233,19 @@ impl Settings {
name: "tags".to_string(),
label: "Tags".to_string(),
align: ColumnAlignment::Left,
max_len: Some("40".to_string()),
max_len: None,
},
ColumnConfig {
name: "meta:hostname_short".to_string(),
label: "Host".to_string(),
align: ColumnAlignment::Left,
max_len: Some("14".to_string()),
max_len: None,
},
ColumnConfig {
name: "meta:command".to_string(),
label: "Command".to_string(),
align: ColumnAlignment::Left,
max_len: Some("100".to_string()),
max_len: None,
},
];
}