Skip to content

Commit

Permalink
fix: mesh link color with dark mode #444 (#446)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando authored May 6, 2020
1 parent 251cd72 commit edec08f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Mesh.vue
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export default {
this.links.push({
sid: source.node_id,
tid: target,
_color: 'black'
_color: this.$vuetify.theme.dark ? 'white' : 'black'
})
}
}
Expand Down

0 comments on commit edec08f

Please sign in to comment.