Skip to content

Commit

Permalink
Fix workflow view widgets
Browse files Browse the repository at this point in the history
  • Loading branch information
kinow committed May 20, 2021
1 parent b9328e7 commit 4d001e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/Workflow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,19 +132,19 @@ export default {
treeWidgets () {
return Object
.entries(this.widgets)
.filter(([type]) => type === TreeComponent.name)
.filter(([id, type]) => type === TreeComponent.name)
.map(([id]) => id)
},
tableWidgets () {
return Object
.entries(this.widgets)
.filter(([type]) => type === TableComponent.name)
.filter(([id, type]) => type === TableComponent.name)
.map(([id]) => id)
},
mutationsWidgets () {
return Object
.entries(this.widgets)
.filter(([type]) => type === MutationsView.name)
.filter(([id, type]) => type === MutationsView.name)
.map(([id]) => id)
}
},
Expand Down

0 comments on commit 4d001e0

Please sign in to comment.