Skip to content

Commit

Permalink
Fix #181: Svelte templates aren't JS template literals!
Browse files Browse the repository at this point in the history
  • Loading branch information
curiousdannii committed Jan 23, 2025
1 parent ed192dd commit 50bd11f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/ui/LoadingPane.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<p><img src="{cover_image_url}" alt="Cover art"></p>
{#if playing}
{#if set_storyfile_size}
<p><progress max="${totalsize}" value="{progress}"></progress></p>
<p><progress max="{totalsize}" value="{progress}"></progress></p>
<p>{prettyBytes(totalsize_gz, {maximumFractionDigits: 1, minimumFractionDigits: 1})}</p>
{:else}
<p><progress></progress></p>
Expand Down

0 comments on commit 50bd11f

Please sign in to comment.