mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-03 20:58:11 +08:00
Fix workflow definition history node data cannot be opened
This commit is contained in:
parent
86f4276f0f
commit
aa5e2cc49d
@ -199,8 +199,8 @@ JSP.prototype.jsonHandle = function ({ largeJson, locations }) {
|
||||
taskType: v.type,
|
||||
runFlag: v.runFlag,
|
||||
nodenumber: locations[v.id].nodenumber,
|
||||
successNode: v.conditionResult.successNode[0],
|
||||
failedNode: v.conditionResult.failedNode[0]
|
||||
successNode: v.conditionResult == undefined? '' : v.conditionResult.successNode[0],
|
||||
failedNode: v.conditionResult == undefined? '' : v.conditionResult.failedNode[0]
|
||||
}))
|
||||
|
||||
// contextmenu event
|
||||
|
Loading…
Reference in New Issue
Block a user