fix: Syntax error in WorkflowEditorPage IIFE
All checks were successful
Deploy Development / deploy (push) Successful in 55s
Build Test / pytest-backend (push) Successful in 4s
Build Test / lint-backend (push) Successful in 0s
Build Test / build-frontend (push) Successful in 16s

QuestionAugmentationPanel und FallbackConfig waren außerhalb der IIFE.
Müssen innerhalb sein, vor dem schließenden Fragment.

Build lokal getestet: ✓ erfolgreich

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Lars 2026-04-11 09:03:10 +02:00
parent 8f6d60681e
commit a4c8b4bd9a

View File

@ -586,15 +586,13 @@ export default function WorkflowEditorPage() {
textareaRef={inlineTemplateTextareaRef} textareaRef={inlineTemplateTextareaRef}
/> />
)} )}
<QuestionAugmentationPanel node={selectedNode} onChange={handleNodeUpdate} />
<FallbackConfig node={selectedNode} edges={edges} nodes={nodes} onChange={handleNodeUpdate} />
</> </>
) )
})()} })()}
<QuestionAugmentationPanel node={selectedNode} onChange={handleNodeUpdate} />
<FallbackConfig node={selectedNode} edges={edges} nodes={nodes} onChange={handleNodeUpdate} />
</>
)}
{selectedNode.type === 'logic' && ( {selectedNode.type === 'logic' && (
<> <>
<LogicExpressionEditor <LogicExpressionEditor