From da5069ecb508bfe6049f239e6071d103ec4cd202 Mon Sep 17 00:00:00 2001 From: Pulse Monitor Date: Sat, 9 Aug 2025 22:43:53 +0000 Subject: [PATCH] fix: show PBS backup verification status correctly - Use actual verified field from backend for PBS backups through PVE storage - Was incorrectly hardcoded to null causing verified checkmarks not to show --- frontend-modern/src/components/Backups/UnifiedBackups.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend-modern/src/components/Backups/UnifiedBackups.tsx b/frontend-modern/src/components/Backups/UnifiedBackups.tsx index 89d87b9ca..d267ed854 100644 --- a/frontend-modern/src/components/Backups/UnifiedBackups.tsx +++ b/frontend-modern/src/components/Backups/UnifiedBackups.tsx @@ -191,12 +191,12 @@ const UnifiedBackups: Component = () => { backupTime: backup.ctime || 0, backupName: backup.volid?.split('/').pop() || '', description: backup.notes || '', // Use notes field for PBS backup descriptions - status: 'ok', // PVE storage doesn't provide verification status + status: backup.verified ? 'verified' : 'unverified', size: backup.size || null, storage: backup.storage || null, datastore: backup.isPBS ? backup.storage : null, namespace: backup.isPBS ? 'root' : null, - verified: null, // PVE storage doesn't provide verification status + verified: backup.verified || false, protected: backup.protected || false }); });