[Bug] Dependent components cannot be justified and viewed (dependent components cannot be edited and viewed) #14865 (#14868)
Co-authored-by: wanggang <wanggang1@baseus.com>
This commit is contained in:
parent
d049c668d6
commit
47471cd846
|
|
@ -77,15 +77,14 @@ export function useNodeStatus(options: Options) {
|
|||
window.$message.success(t('project.workflow.refresh_status_succeeded'))
|
||||
taskList.value = res.taskList
|
||||
if (taskList.value) {
|
||||
const allDependentResult = {}
|
||||
taskList.value.forEach((taskInstance: any) => {
|
||||
setNodeStatus(taskInstance.taskCode, taskInstance.state, taskInstance)
|
||||
|
||||
if (taskInstance.dependentResult) {
|
||||
nodeStore.updateDependentResult(
|
||||
JSON.parse(taskInstance.dependentResult)
|
||||
)
|
||||
Object.assign(allDependentResult, JSON.parse(taskInstance.dependentResult))
|
||||
}
|
||||
})
|
||||
nodeStore.updateDependentResult(allDependentResult)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue