Aktualizovat web/src/routes/+page.svelte

This commit is contained in:
tree 2024-02-10 11:50:14 +01:00
rodič 061c034b88
revize 24438cbbc4
1 změnil soubory, kde provedl 1 přidání a 1 odebrání

Zobrazit soubor

@ -67,7 +67,7 @@
{ title: '', key: s => `<span class="font-bold">${s.name}</span>` },
{ title: 'Hostname', key: (s) => `<a href="https://${s.host}" class="underline hover:no-underline">${s.host}</a>` },
{ title: '', key: (s) => `<a href="https://status.gwei.cz/dashboard/${s.monitor}" target="_blank"><img src="https://status.gwei.cz/api/badge/${s.monitor}/status?style=flat-square" /></a>` },
{ title: 'Uptime', key: s => formatDistanceToNow(new Date(s.uptime)) },
{ title: 'Uptime', key: s => s.uptime && formatDistanceToNow(new Date(s.uptime)) },
{ title: 'OS', key: 'system' },
{ title: 'Provider', key: 'provider' },
{ title: 'Location', key: 'location' },