Skip to content

Commit

Permalink
feat: 流水线重构时,详情页的触发人未更新 #11055
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 24978
  • Loading branch information
vhwweng committed Nov 27, 2024
1 parent 091ccb5 commit 9038492
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -399,16 +399,15 @@
return this.execDetail?.executeCount ?? 1
},
recordList () {
const list = this.execDetail?.recordList.reverse() || []
const list = [...this.execDetail?.recordList]
return (
list.map((record, index) => ({
list.reverse().map((record, index) => ({
id: index + 1,
user: record.startUser
})) ?? []
)
},
startUser () {
console.log(this.recordList, 24)
return this.recordList.find(i => i.id === this.executeCount)?.user || ''
}
},
Expand Down

0 comments on commit 9038492

Please sign in to comment.