Phase8
Some checks failed
CI / Node — lint, typecheck, test, build (push) Failing after 9s
CI / Go — node-agent tests (push) Failing after 9s
CI / Go — edge-gateway build (push) Successful in 17s

This commit is contained in:
smueller
2026-06-26 13:33:03 +02:00
parent ab21f53cdd
commit b335f6a497
39 changed files with 1477 additions and 20 deletions

View File

@@ -61,7 +61,8 @@ export function ServerCard({ server, showDetailsLink = true }: ServerCardProps)
server.status,
);
const address =
server.hostPort !== null ? `localhost:${server.hostPort}` : t("addressPending");
server.joinHostname ??
(server.hostPort !== null ? `localhost:${server.hostPort}` : t("addressPending"));
return (
<Card>

View File

@@ -42,6 +42,9 @@ export interface Server {
ramMb: number;
idleShutdownEnabled: boolean;
idleStopAt: string | null;
joinSlug: string | null;
joinHostname: string | null;
joinToStartEnabled: boolean;
createdAt: string;
updatedAt: string;
}