From 6cb82f3098f953df9145effaaa344fb27336544a Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Mon, 23 Mar 2026 16:32:24 -0700 Subject: [PATCH] fix(canvas): register rstack-comment-bell in canvas.html imports Canvas.html has its own component import list separate from shell.js. The comment bell was missing, so the custom element never initialized. Co-Authored-By: Claude Opus 4.6 --- website/canvas.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/canvas.html b/website/canvas.html index f3dc736..e1c1aff 100644 --- a/website/canvas.html +++ b/website/canvas.html @@ -2515,6 +2515,7 @@ import { RStackMi } from "@shared/components/rstack-mi"; import { RStackSpaceSettings } from "@shared/components/rstack-space-settings"; import { RStackHistoryPanel } from "@shared/components/rstack-history-panel"; + import { RStackCommentBell } from "@shared/components/rstack-comment-bell"; import { rspaceNavUrl } from "@shared/url-helpers"; // Expose URL helper globally (matches shell.js) @@ -2530,6 +2531,7 @@ RStackMi.define(); RStackSpaceSettings.define(); RStackHistoryPanel.define(); + RStackCommentBell.define(); // ── Settings & history panel toggle (same as shell.ts) ── document.getElementById("settings-btn")?.addEventListener("click", () => {