From fe37c9046d0762426a1763a5538d480e6ccb0485 Mon Sep 17 00:00:00 2001 From: dtoro Date: Sun, 8 Mar 2026 21:44:44 +0100 Subject: [PATCH] context --- src/App.tsx | 1 + src/components/graph/FunctionNode.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 7f144da..265dc9d 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -426,6 +426,7 @@ export default function App() { Renderer + createNode('variable')}> Variable diff --git a/src/components/graph/FunctionNode.tsx b/src/components/graph/FunctionNode.tsx index 3eb9b7c..75872c1 100644 --- a/src/components/graph/FunctionNode.tsx +++ b/src/components/graph/FunctionNode.tsx @@ -167,7 +167,7 @@ export const FunctionNode = memo(function FunctionNode({ id, data, width, height - {bodyValue ? `${bodyValue.length} chars` : 'none'} + {bodyValue ? `Javascript | ${bodyValue.length} chars` : 'none'}