Add space between archive count and 'archives' in backup panel

This commit is contained in:
Christoffer Martinsson 2025-10-20 13:24:23 +02:00
parent 959745b51b
commit ecaf3aedb5

View File

@ -442,7 +442,7 @@ impl BackupWidget {
(service.archive_count, service.repo_size_gb)
{
let size_str = Self::format_size_with_proper_units(size_gb);
format!(" {}archives {}", archives, size_str)
format!(" {} archives {}", archives, size_str)
} else {
String::new()
};