mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-28 05:42:51 +00:00
fix: In the execution details, the display order of the child nodes of the loop body is incorrect (#4461)
This commit is contained in:
parent
b85db36464
commit
f665b5f500
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue