mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-12 22:29:03 +08:00
fix: iteration log index error (#14855)
This commit is contained in:
parent
96eed571d9
commit
330dc2fd44
@ -6,7 +6,7 @@ function addChildrenToIterationNode(iterationNode: NodeTracing, childrenNodes: N
|
||||
childrenNodes.forEach((item, index) => {
|
||||
if (!item.execution_metadata) return
|
||||
const { iteration_index = 0 } = item.execution_metadata
|
||||
const runIndex: number = iteration_index || index
|
||||
const runIndex: number = iteration_index !== undefined ? iteration_index : index
|
||||
if (!details[runIndex])
|
||||
details[runIndex] = []
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user