Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenClontz committed Nov 4, 2024
1 parent 9be5ef2 commit cc26f09
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/viewer/src/components/GraphViz/GraphViz.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
onMount(() => {
d3.select(graphDiv).graphviz().renderDot(dot)
})
$: if (graphDiv) { d3.select(graphDiv).graphviz().renderDot(dot) }
$: if (graphDiv) {
d3.select(graphDiv).graphviz().renderDot(dot)
}
</script>

<div bind:this={graphDiv} style="text-align: center;" />

0 comments on commit cc26f09

Please sign in to comment.