Remove RAM and Disk columns from services widget header

Changed header from 4 columns to 2 columns:
- Before: Service, Status, RAM, Disk
- After: Service, Status

Matches the removal of memory_mb and disk_gb fields.
This commit is contained in:
2025-11-28 22:37:14 +01:00
parent 14f74b4cac
commit 4d77ffe17e
2 changed files with 5 additions and 5 deletions

View File

@@ -429,8 +429,8 @@ impl ServicesWidget {
// Header
let header = format!(
"{:<25} {:<10} {:<8} {:<8}",
"Service:", "Status:", "RAM:", "Disk:"
"{:<25} {:<10}",
"Service:", "Status:"
);
let header_para = Paragraph::new(header).style(Typography::muted());
frame.render_widget(header_para, content_chunks[0]);