Bug Fixes. Workflow Engine #81

Merged
Lars merged 4 commits from develop into main 2026-04-12 14:08:43 +02:00
Showing only changes of commit 77f1ed14c5 - Show all commits

View File

@ -47,7 +47,7 @@ export function QuestionAugmentationPanel({ node, onChange }) {
{questions.map((q, idx) => (
<QuestionEditor
key={q.id}
key={idx}
question={q}
index={idx}
onChange={(field, value) => handleQuestionChange(idx, field, value)}