From e89e87d2b289953ddcdd947f6ab90200057ec209 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Tue, 24 Feb 2026 21:20:58 -0300 Subject: [PATCH] fix: use full app paths for desktop icons (not partials) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Reverted chat path from /suite/partials/chat.html to /suite/chat/chat.html (full app) - Kept tasks path as /suite/tasks/tasks.html (full app, already correct) - Kept vibe path as /suite/partials/vibe.html (no dedicated vibe directory exists yet) - All other apps already using correct full app paths The partials directory should only contain fragments for embedding in other pages, not standalone apps. Desktop icons must load full apps into windows. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- ui/suite/desktop.html | 4 ++-- ui/suite/partials/chat.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/suite/desktop.html b/ui/suite/desktop.html index a5bc768..0b57511 100644 --- a/ui/suite/desktop.html +++ b/ui/suite/desktop.html @@ -163,14 +163,14 @@ Vibe -
+
Tasks
-
+
diff --git a/ui/suite/partials/chat.html b/ui/suite/partials/chat.html index 27627f2..dda8245 100644 --- a/ui/suite/partials/chat.html +++ b/ui/suite/partials/chat.html @@ -67,7 +67,7 @@ var WS_BASE_URL = window.location.protocol === "https:" ? "wss://" : "ws://"; - var WS_URL = WS_BASE_URL + window.location.host + "/ws/chat"; + var WS_URL = WS_BASE_URL + window.location.host + "/ws"; var MessageType = { EXTERNAL: 0,