From dbf16ffe8c51e57c010392b892de0e0389cfc4f5 Mon Sep 17 00:00:00 2001 From: not-nullptr Date: Thu, 14 Nov 2024 16:40:03 +0000 Subject: [PATCH] fix: progress bar --- src/lib/components/visual/ProgressBar.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/visual/ProgressBar.svelte b/src/lib/components/visual/ProgressBar.svelte index b77f739..0b94052 100644 --- a/src/lib/components/visual/ProgressBar.svelte +++ b/src/lib/components/visual/ProgressBar.svelte @@ -19,7 +19,7 @@ class="h-full bg-accent-background dynadark:bg-accent-foreground absolute left-0 top-0" class:percentless-animation={progress === null} style={percent - ? "width: {percent}%; transition: 500ms linear width;" + ? `width: ${percent}%; transition: 500ms linear width;` : ""} >