fix: VariableNode size

This commit is contained in:
2026-03-11 13:39:49 +01:00
parent deb1be0d66
commit 1cc6b98973
2 changed files with 8 additions and 3 deletions

View File

@@ -62,7 +62,7 @@ export function registerBuiltinNodes(): void {
registerNodeType({
id: 'variable',
component: VariableNode,
defaultStyle: { width: 224, height: 180 },
defaultStyle: { width: 224, height: 240 },
defaultData: { value: '', valueType: 'string' },
idPrefix: 'var_',
hasInput: false,