fix(editor): Fix bug causing node issues to not be assigned before first interaction (no-changelog) (#10980)

This commit is contained in:
Alex Grozav
2024-09-27 16:15:15 +03:00
committed by GitHub
parent 136d491325
commit 574cff16ed
5 changed files with 22 additions and 39 deletions

View File

@@ -373,7 +373,7 @@ export function useCanvasMapping({
subtitle: nodeSubtitleById.value[node.id] ?? '',
type: node.type,
typeVersion: node.typeVersion,
disabled: !!node.disabled,
disabled: node.disabled,
inputs: nodeInputsById.value[node.id] ?? [],
outputs: nodeOutputsById.value[node.id] ?? [],
connections: {