Compare commits
2 Commits
12c0ca1177
...
faf7358d1b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
faf7358d1b | ||
|
|
71c56110f9 |
@@ -45,6 +45,16 @@ export default function RootLayout({
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{children}
|
{children}
|
||||||
|
<footer>
|
||||||
|
<div className="max-w-7xl mx-auto py-8 px-4 sm:px-6 lg:px-8 flex flex-col sm:flex-row justify-between items-center text-sm text-gray-500">
|
||||||
|
<div className="mb-4 sm:mb-0 text-center sm:text-left">
|
||||||
|
© 2025 Logan Cusano. All rights reserved.
|
||||||
|
</div>
|
||||||
|
<div className="flex space-x-6">
|
||||||
|
<a href="https://git.vpn.cusano.net/logan/drb-frontend/issues" target="_blank" rel="noopener noreferrer" className="hover:text-gray-700">Submit Issues</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
</AuthProvider>
|
</AuthProvider>
|
||||||
<Toaster />
|
<Toaster />
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
@@ -114,7 +114,7 @@ const SystemsManagement: React.FC<SystemsManagementProps> = ({ token, logoutUser
|
|||||||
type: newSystemData.type,
|
type: newSystemData.type,
|
||||||
location: newSystemData.location,
|
location: newSystemData.location,
|
||||||
description: newSystemData.description || undefined,
|
description: newSystemData.description || undefined,
|
||||||
frequencies: newSystemData.frequencies.split(',').map(f => parseInt(f.trim())).filter(f => !isNaN(f)),
|
frequencies: newSystemData.frequencies.split(',').map(f => parseFloat(f.trim())).filter(f => !isNaN(f)),
|
||||||
avail_on_nodes: newSystemData.avail_on_nodes.split(',').map(node => node.trim()).filter(node => node),
|
avail_on_nodes: newSystemData.avail_on_nodes.split(',').map(node => node.trim()).filter(node => node),
|
||||||
tags: parsedTags,
|
tags: parsedTags,
|
||||||
whitelist: newSystemData.whitelist.split(',').map(w => parseInt(w.trim())).filter(w => !isNaN(w)),
|
whitelist: newSystemData.whitelist.split(',').map(w => parseInt(w.trim())).filter(w => !isNaN(w)),
|
||||||
|
|||||||
Reference in New Issue
Block a user