From 3ca57be97cdfc7289e0a0879acac7c8c1707ddac Mon Sep 17 00:00:00 2001 From: kevinBell Date: Wed, 29 Jul 2026 11:43:18 -0600 Subject: [PATCH] website access minor edit --- dashboard/server.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dashboard/server.mjs b/dashboard/server.mjs index 4a0e177..b69056f 100644 --- a/dashboard/server.mjs +++ b/dashboard/server.mjs @@ -52,13 +52,13 @@ function safeFile(requestUrl) { } } -// Tailscale advertises the host over its tailnet on a 100.64.0.0/10 address, so -// label that URL clearly for remote (off-LAN) demos over the tunnel. +// A tailnet advertises the host over a 100.64.0.0/10 address, so label that URL +// clearly for remote (off-LAN) demos over the tunnel. function interfaceLabel(interfaceName, address) { const [first, second] = address.split(".").map(Number); const isTailnet = /tailscale/i.test(interfaceName) || (first === 100 && second >= 64 && second <= 127); - return isTailnet ? "Tailscale (tunnel)" : `Other devices (${interfaceName})`; + return isTailnet ? "Remote (tunnel)" : `Other devices (${interfaceName})`; } function displayUrls(host, port) {