File tree Expand file tree Collapse file tree
ui/src/views/trigger/execution-record Expand file tree Collapse file tree Original file line number Diff line number Diff line change 148148 <span class =" mr-16 color-secondary" v-if =" taskRecordDetails?.state !== 'STARTED'"
149149 >{{ taskRecordDetails?.run_time?.toFixed(2) || 0.0 }} s</span
150150 >
151- <el-icon class =" color-success" :size =" 16" v-if =" taskRecordDetails?.state === 'SUCCESS'" >
151+ <el-icon
152+ class =" color-success"
153+ :size =" 16"
154+ v-if =" taskRecordDetails?.state === 'SUCCESS'"
155+ >
152156 <CircleCheck />
153157 </el-icon >
154- <el-icon class =" is-loading" :size =" 16" v-else-if =" taskRecordDetails?.state === 'STARTED'" >
158+ <el-icon
159+ class =" is-loading"
160+ :size =" 16"
161+ v-else-if =" taskRecordDetails?.state === 'STARTED'"
162+ >
155163 <Loading />
156164 </el-icon >
157165 <el-icon class =" color-danger" :size =" 16" v-else >
186194 {{ $t('chat.executionDetails.title') }}
187195 </h5 >
188196 <div class =" p-8-12 border-t-dashed lighter" >
189- <template v-for =" (cLoop , cIndex ) in taskRecordDetails ?.meta ?.details " :key =" cIndex " >
197+ <template
198+ v-for =" (cLoop , cIndex ) in arraySort (
199+ Object .values (taskRecordDetails ?.meta ?.details ?? {}) ?? [],
200+ ' index' ,
201+ ) "
202+ :key =" cIndex "
203+ >
190204 <ExecutionDetailCard :data =" cLoop" ></ExecutionDetailCard >
191205 </template >
192206 </div >
You can’t perform that action at this time.
0 commit comments