improve labels

This commit is contained in:
2026-03-09 16:26:02 +01:00
parent c596fc70eb
commit 11fd9cd54d

View File

@@ -38,7 +38,7 @@ export function registerBuiltinNodes(): void {
content: '@startuml\n\n@enduml\n', content: '@startuml\n\n@enduml\n',
title: nodeId ?? '', title: nodeId ?? '',
}), }),
connectionLabel: 'add input', connectionLabel: 'adding input',
}) })
registerNodeType({ registerNodeType({
@@ -53,7 +53,7 @@ export function registerBuiltinNodes(): void {
help: NODE_HELP.render, help: NODE_HELP.render,
menuLabel: 'Renderer', menuLabel: 'Renderer',
menuIcon: <Sparkles className={ICON_CLASS} />, menuIcon: <Sparkles className={ICON_CLASS} />,
connectionLabel: 'render', connectionLabel: 'rendering',
}) })
registerNodeType({ registerNodeType({
@@ -88,6 +88,6 @@ export function registerBuiltinNodes(): void {
menuLabel: 'Function', menuLabel: 'Function',
menuIcon: <Code2 className={ICON_CLASS} />, menuIcon: <Code2 className={ICON_CLASS} />,
getResetData: () => ({ body: '' }), getResetData: () => ({ body: '' }),
connectionLabel: 'add input', connectionLabel: 'adding input',
}) })
} }