From 16c44440562a12d5fd99ae2c9f5149f22ba763b2 Mon Sep 17 00:00:00 2001 From: biersoeckli Date: Thu, 9 Jan 2025 15:05:35 +0000 Subject: [PATCH] fix/add alert for no backups configured in backups page --- src/app/backups/page.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/app/backups/page.tsx b/src/app/backups/page.tsx index 6cfcc7b..56086ce 100644 --- a/src/app/backups/page.tsx +++ b/src/app/backups/page.tsx @@ -35,6 +35,13 @@ export default async function BackupsPage() { {backupsVolumesWithoutActualBackups.map((item) => `${item.volume.app.name} (mount: ${item.volume.containerMountPath})`).join(', ')} } + {backupsVolumesWithoutActualBackups.length === 0 && backupInfoModels.length === 0 && + + No Backups configured + + No backups are currently stored in the S3 targets. To configure backups for your apps, navigate to the settings of each app and configure a backup schedule in the "Storage" tab. + + }