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:
@@ -233,19 +233,19 @@ impl Settings {
|
|||||||
name: "tags".to_string(),
|
name: "tags".to_string(),
|
||||||
label: "Tags".to_string(),
|
label: "Tags".to_string(),
|
||||||
align: ColumnAlignment::Left,
|
align: ColumnAlignment::Left,
|
||||||
max_len: Some("40".to_string()),
|
max_len: None,
|
||||||
},
|
},
|
||||||
ColumnConfig {
|
ColumnConfig {
|
||||||
name: "meta:hostname_short".to_string(),
|
name: "meta:hostname_short".to_string(),
|
||||||
label: "Host".to_string(),
|
label: "Host".to_string(),
|
||||||
align: ColumnAlignment::Left,
|
align: ColumnAlignment::Left,
|
||||||
max_len: Some("14".to_string()),
|
max_len: None,
|
||||||
},
|
},
|
||||||
ColumnConfig {
|
ColumnConfig {
|
||||||
name: "meta:command".to_string(),
|
name: "meta:command".to_string(),
|
||||||
label: "Command".to_string(),
|
label: "Command".to_string(),
|
||||||
align: ColumnAlignment::Left,
|
align: ColumnAlignment::Left,
|
||||||
max_len: Some("100".to_string()),
|
max_len: None,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user