Skip to content

Commit

Permalink
fix(tracking): error in location normalization
Browse files Browse the repository at this point in the history
  • Loading branch information
gruhn committed Aug 16, 2018
1 parent 6a63718 commit 4ae412e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/QrcodeReader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ export default {
const joinObjects = (objA, objB) => ({ ...objA, ...objB })
return Object.entries(location)
.map(([ key, val ]) => [ key, normalizeEntry(val) ])
.map(([ key, val ]) => ({ [key]: normalizeEntry(val) }))
.reduce(joinObjects, {})
}
},
Expand Down

0 comments on commit 4ae412e

Please sign in to comment.