fix: update default list_format labels to match their names

Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-16 12:47:45 -03:00
parent c470e63bac
commit 8a2e992ca5

View File

@@ -177,11 +177,11 @@ impl Settings {
if settings.list_format.is_empty() { if settings.list_format.is_empty() {
debug!("CONFIG: Setting default list_format"); debug!("CONFIG: Setting default list_format");
settings.list_format = vec![ settings.list_format = vec![
ColumnConfig { name: "id".to_string(), label: "Item".to_string() }, ColumnConfig { name: "id".to_string(), label: "id".to_string() },
ColumnConfig { name: "time".to_string(), label: "Time".to_string() }, ColumnConfig { name: "time".to_string(), label: "time".to_string() },
ColumnConfig { name: "size".to_string(), label: "Size".to_string() }, ColumnConfig { name: "size".to_string(), label: "size".to_string() },
ColumnConfig { name: "meta:full_hostname".to_string(), label: "Host".to_string() }, ColumnConfig { name: "tags".to_string(), label: "tags".to_string() },
ColumnConfig { name: "meta:command".to_string(), label: "Command".to_string() }, ColumnConfig { name: "meta:hostname".to_string(), label: "hostname".to_string() },
]; ];
} }