From ce4159957bb1ce87bc878b01a4e6f7e289141554 Mon Sep 17 00:00:00 2001 From: Pulse Monitor Date: Wed, 27 Aug 2025 19:21:51 +0000 Subject: [PATCH] fix: replace emoji with SVG icons for backup verification status MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaced the clock emoji (⏱) for non-verified backups with a proper SVG circle-check icon. Also replaced the checkmark emoji with an SVG checkmark. The new icons are more professional and scale better. Non-verified backups now show a subtle gray circle-check icon instead of the clock emoji. --- .../src/components/Backups/UnifiedBackups.tsx | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/frontend-modern/src/components/Backups/UnifiedBackups.tsx b/frontend-modern/src/components/Backups/UnifiedBackups.tsx index fde575823..7e964c72c 100644 --- a/frontend-modern/src/components/Backups/UnifiedBackups.tsx +++ b/frontend-modern/src/components/Backups/UnifiedBackups.tsx @@ -1553,7 +1553,9 @@ const UnifiedBackups: Component = () => { - ✓ + + + @@ -1743,9 +1745,17 @@ const UnifiedBackups: Component = () => { {item.backupType === 'remote' ? ( item.verified ? ( - ✓ + + + + + ) : ( - ⏱ + + + + + ) ) : ( -