Skip to content

Commit

Permalink
svelte-check doesn't want a CSS string
Browse files Browse the repository at this point in the history
  • Loading branch information
dae committed Jul 28, 2020
1 parent 0e4dae8 commit bbff62b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ts/src/stats/CardCounts.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<svg
bind:this={svg}
viewBox={`0 0 ${bounds.width} ${bounds.height}`}
style="opacity: {graphData.totalCards ? 1 : 0}">
style={{ opacity: graphData.totalCards ? 1 : 0 }}>
<g class="days" />
</svg>

Expand Down

0 comments on commit bbff62b

Please sign in to comment.