fix: In the execution details, the display order of the child nodes of the loop body is incorrect (#4461)

This commit is contained in:
shaohuzhang1 2025-12-08 16:58:42 +08:00 committed by GitHub
parent b85db36464
commit f665b5f500
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1001,7 +1001,7 @@
<template
v-for="(cLoop, cIndex) in Object.values(
data.loop_node_data?.[currentLoopNode] || [],
)"
).sort((x: any, y: any) => (x.index || 0) - (y.index || 0))"
:key="cIndex"
>
<ExecutionDetailCard :data="cLoop"></ExecutionDetailCard>