diff --git a/frontend-modern/src/components/Backups/UnifiedBackups.tsx b/frontend-modern/src/components/Backups/UnifiedBackups.tsx
index 79082c6bc..5a0065e84 100644
--- a/frontend-modern/src/components/Backups/UnifiedBackups.tsx
+++ b/frontend-modern/src/components/Backups/UnifiedBackups.tsx
@@ -1668,17 +1668,16 @@ const UnifiedBackups: Component = () => {
{(group) => (
<>
- |
- {group.label} ({group.items.length})
- |
{
- let cols = 6; // Base columns: Type, VMID, Node, Time, Backup, Details
+ let cols = 7; // Base columns: Name, Type, VMID, Node, Time, Backup, Details
if (backupTypeFilter() === 'all' || backupTypeFilter() === 'remote') cols++; // Add Owner column
if (backupTypeFilter() !== 'snapshot') cols++; // Add Size column
if (backupTypeFilter() === 'all' || backupTypeFilter() === 'remote') cols++; // Add Verified column
if (backupTypeFilter() !== 'snapshot') cols++; // Add Location column
return cols;
- })()} class="p-0.5 px-1.5 text-xs font-medium text-gray-500 dark:text-gray-400"> |
+ })()} class="p-0.5 px-1.5 text-xs font-medium text-gray-600 dark:text-gray-400 whitespace-nowrap">
+ {group.label} ({group.items.length})
+
{(item) => (