From e3fbba4d6bc15e2f96cbf2276911486548ea1e12 Mon Sep 17 00:00:00 2001 From: Mike Swanson Date: Mon, 29 Dec 2025 06:06:15 -0700 Subject: [PATCH] Fix disconnect confirmation newline display MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed \n\n to \n\n so newlines render properly in confirm dialog 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- server/static/dashboard.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/static/dashboard.html b/server/static/dashboard.html index 4efb5df..ba16732 100644 --- a/server/static/dashboard.html +++ b/server/static/dashboard.html @@ -794,7 +794,7 @@ } async function disconnectMachine(sessionId, machineName) { - if (!confirm("Disconnect " + machineName + "?\\n\\nThis will end the remote session.")) return; + if (!confirm("Disconnect " + machineName + "?\n\nThis will end the remote session.")) return; try { const response = await fetch("/api/sessions/" + sessionId, { method: "DELETE" }); if (response.ok) {