Skip to content

Commit

Permalink
fix(flowmap): flowmap link volumes not showing up in latest build
Browse files Browse the repository at this point in the history
Cut/paste error.
  • Loading branch information
billyc committed Feb 11, 2022
1 parent 25094ac commit b95984e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/charts/flowmap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ export default class VueComponent extends Vue {
// assumes flow data has "origin,destination,count" columns
const origin = data.origin.values
const destination = data.origin.values
const count = data.origin.values
const destination = data.destination.values
const count = data.count.values
const flows = [] as any[]
for (let i = 0; i < origin.length; i++) {
Expand Down

0 comments on commit b95984e

Please sign in to comment.