refactor(ui): use dot for backup status

This commit is contained in:
Nicolas Meienberger
2025-11-02 16:36:02 +01:00
parent 8f447ac58d
commit 67e7d36fe7
4 changed files with 65 additions and 15 deletions

View File

@@ -49,9 +49,9 @@ export function generateBreadcrumbs(pathname: string, params: Record<string, str
isCurrentPage: pathname === "/backups",
});
if (pathname.startsWith("/backups/") && params.scheduleId) {
if (pathname.startsWith("/backups/") && params.id) {
breadcrumbs.push({
label: `Schedule #${params.scheduleId}`,
label: `Schedule #${params.id}`,
isCurrentPage: true,
});
}