From 7ec683aca0062934aa7661ee9e59420f5f4fc511 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Fri, 27 Mar 2026 20:09:12 +0100 Subject: [PATCH] =?UTF-8?q?chore:=20replace=20toolbar=20icons=20=E2=80=94?= =?UTF-8?q?=20footprints=20for=20trace,=20tap=20for=20tap=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Toggle tracing: "T" → 👣 (footprints — trace = following the path) - Configure tap: ✎ (pencil) → 🚰 (water tap — tap = intercept the flow) Co-Authored-By: Claude Opus 4.6 (1M context) --- ui/src/components/ProcessDiagram/NodeToolbar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/components/ProcessDiagram/NodeToolbar.tsx b/ui/src/components/ProcessDiagram/NodeToolbar.tsx index 6dc81df3..4a7e1cd2 100644 --- a/ui/src/components/ProcessDiagram/NodeToolbar.tsx +++ b/ui/src/components/ProcessDiagram/NodeToolbar.tsx @@ -16,8 +16,8 @@ interface NodeToolbarProps { const ACTIONS: { icon: string; action: NodeAction; title: string }[] = [ { icon: '\uD83D\uDD0D', action: 'inspect', title: 'Inspect' }, - { icon: 'T', action: 'toggle-trace', title: 'Toggle tracing' }, - { icon: '\u270E', action: 'configure-tap', title: 'Configure tap' }, + { icon: '\uD83D\uDC63', action: 'toggle-trace', title: 'Toggle tracing' }, + { icon: '\uD83D\uDEB0', action: 'configure-tap', title: 'Configure tap' }, { icon: '\u22EF', action: 'copy-id', title: 'Copy ID' }, ];