diff --git a/website/canvas.html b/website/canvas.html
index 27fd34f..76d0ed1 100644
--- a/website/canvas.html
+++ b/website/canvas.html
@@ -5094,8 +5094,10 @@
const dropdown = group.querySelector(".toolbar-dropdown");
if (!dropdown) return;
- // Set header text from the toggle button's title attribute
- toolbarPanelHeader.textContent = toggle.getAttribute("title") || toggle.textContent.trim();
+ // Set header: emoji + title
+ const icon = toggle.querySelector(".tg-icon");
+ const title = toggle.getAttribute("title") || "";
+ toolbarPanelHeader.textContent = (icon ? icon.textContent.trim() + " " : "") + title;
// Clone dropdown buttons into the panel body
toolbarPanelBody.innerHTML = "";