Skip to content

Commit

Permalink
Merge branch 'develop-2.0.0-beta' of https://github.com/FederatedAI/F…
Browse files Browse the repository at this point in the history
…ATE-Board into develop-2.0.0-beta
  • Loading branch information
wmqwxb committed Aug 30, 2023
2 parents e8b0511 + af95528 commit 78dd44c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,10 @@ class DiagramInfo {
for (const item of obj[name]) {
const isData = item.type.match('data')
const type = isData ? 'data' : 'model'
const inputType = item.type

this.linking[type] = this.linking[type] || []
this.linking[type].push({
this.linking[inputType] = this.linking[inputType] || []
this.linking[inputType].push({
components: [item.component_name, name],
outputType: item.up_output_info ? (type + item.up_output_info.slice(1).join('')) : (type + '0')
})
Expand Down

0 comments on commit 78dd44c

Please sign in to comment.