This commit is contained in:
Saeed Vaziry
2025-05-21 21:05:13 +02:00
parent fe3317692b
commit a40c2828c2
20 changed files with 568 additions and 14 deletions

View File

@ -22,6 +22,8 @@ export default function Layout({
if (page.props.flash && page.props.flash.success) toast.success(page.props.flash.success);
if (page.props.flash && page.props.flash.error) toast.error(page.props.flash.error);
if (page.props.flash && page.props.flash.info) toast.info(page.props.flash.info);
if (page.props.flash && page.props.flash.warning) toast.error(page.props.flash.warning);
return (
<SidebarProvider

View File

@ -35,7 +35,7 @@ export default function ServerLayout({ server, children }: { server: Server; chi
},
{
title: 'Backups',
href: '/backups',
href: route('database-backups', { server: server.id }),
icon: CloudUploadIcon,
},
],