chore: correct reducing

This commit is contained in:
Björn Otgaar
2026-01-07 15:50:45 +01:00
parent 4e07b95722
commit 35ab95bd35
4 changed files with 1 additions and 4 deletions

View File

@@ -129,7 +129,7 @@ export function GoalReduce(node: Node, _nodes: Node[]) {
const data = node.data as GoalNodeData;
return {
id: node.id,
name: data.label,
name: data.name,
description: data.description,
can_fail: data.can_fail,
plan: data.plan ? PlanReduce(data.plan) : "",