From 15812195f11f86062c5270780fec002e225ba354 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Sun, 1 Mar 2026 21:33:55 -0800 Subject: [PATCH] fix: set canvas-layout class on initial server render When loading the rspace canvas directly (not via tab navigation), #app lacked the canvas-layout class. Without it, #canvas collapses to 0 height and pointer events for panning miss the canvas element. Co-Authored-By: Claude Opus 4.6 --- server/shell.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/shell.ts b/server/shell.ts index cc8da49..1bb714e 100644 --- a/server/shell.ts +++ b/server/shell.ts @@ -91,7 +91,7 @@ export function renderShell(opts: ShellOptions): string {
-
+
${body}