From 6d5aa7a4eb28dda6f1edafa47d9bfb978df84009 Mon Sep 17 00:00:00 2001 From: Pulse Monitor Date: Fri, 29 Aug 2025 10:42:28 +0000 Subject: [PATCH] fix: remove column constraint from backup date row headers --- .../src/components/Backups/UnifiedBackups.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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) => (