Bug Fixes. Workflow Engine #81
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "develop"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem: Cursor springt nach jedem Tastendruck aus dem ID-Feld Ursache: key={q.id} in QuestionEditor map - Wenn ID geändert wird, ändert sich der React Key - React unmountet alte Component und mountet neue - Focus geht verloren Lösung: key={idx} verwenden - Stabiler Key während Editing - Komponente bleibt gemountet - Cursor bleibt im Feld UX: Jetzt kann man IDs flüssig editieren ohne Unterbrechung Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>Problem: Parser converted question IDs to lowercase ('qAnalyst' → 'qanalyst'), causing normalization to fail because id_catalog lookup is case-sensitive. Impact: All workflow question signals were lost - normalized_signals stayed empty, so template placeholders like {{node_2.signal_qAnalyst}} remained unresolved. Solution: Removed .lower() call in parse_decision_questions() to preserve original case from AI response. Root cause: Line 162 in result_container_parser.py Fixes: Question augmentation signals not appearing in workflow end nodes