diff --git a/frontend/src/utils/workflowSerializer.js b/frontend/src/utils/workflowSerializer.js index 2b1ebce..4983a5b 100644 --- a/frontend/src/utils/workflowSerializer.js +++ b/frontend/src/utils/workflowSerializer.js @@ -22,6 +22,7 @@ export function serializeToWorkflowGraph(nodes, edges, metadata = {}) { // Type-spezifische Felder ...(node.type === 'analysis' && { prompt_id: node.data.prompt_id || null, + prompt_name: node.data.prompt_name || null, questions: node.data.questions || [], fallback_strategy: node.data.fallback_strategy || 'conservative_skip' }),