Skip to content

Commit c6ca88a

Browse files
committed
fix: remove dollar sign prefix from usage statistics tooltips
1 parent 253843d commit c6ca88a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib/components/progressbar/ProgressBar.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
style:width={`${(item.size / maxSize) * 100}%`}>
3030
</div>
3131
<div slot="tooltip">
32-
<span class="u-bold">{item.tooltip.title}</span> ${item.tooltip.label}
32+
<span class="u-bold">{item.tooltip.title}</span>
33+
{item.tooltip.label}
3334
</div>
3435
</Tooltip>
3536
{/each}

0 commit comments

Comments
 (0)