Show archive count range to detect inconsistencies

- Display single number if all services have same count
- Display min-max range if counts differ (indicates problem)
This commit is contained in:
2025-11-29 17:59:24 +01:00
parent 1c1beddb55
commit 40f3ff66d8
4 changed files with 21 additions and 8 deletions

View File

@@ -195,7 +195,8 @@ pub struct BackupDiskData {
pub disk_total_gb: f32,
pub usage_status: Status,
pub services: Vec<String>,
pub total_archives: i64,
pub archives_min: i64,
pub archives_max: i64,
}
impl AgentData {