From 5ce4667d32877b7ba7b800bd664e69cbea0ba9f5 Mon Sep 17 00:00:00 2001 From: Will Miao Date: Wed, 24 Jun 2026 22:36:45 +0800 Subject: [PATCH] =?UTF-8?q?feat(node-marker):=20add=20=F0=9F=8E=AF=20emoji?= =?UTF-8?q?=20prefix=20to=20Mark=20as=20context=20menu=20item?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/comfyui/node_marker.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/comfyui/node_marker.js b/web/comfyui/node_marker.js index 9d344c22..2499bf37 100644 --- a/web/comfyui/node_marker.js +++ b/web/comfyui/node_marker.js @@ -3,7 +3,7 @@ import { app } from "../../scripts/app.js"; // ============================================================================= // Node Marker – right-click node marking (no dedicated node required) // -// Adds a "Mark as →" submenu with role options to any node's context menu. +// Adds a "🎯 Mark as →" submenu with role options to any node's context menu. // Roles are stored in ``node.properties.lm_marker_role`` and automatically // persist with the workflow JSON. // @@ -107,7 +107,7 @@ function buildMenuItems(node) { return [ null, { - content: "Mark as", + content: "\uD83C\uDFAF Mark as", has_submenu: true, submenu: { options: buildSubmenuOptions(node),