diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/routes/(app)/fahrplan/+page.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routes/(app)/fahrplan/+page.svelte b/src/routes/(app)/fahrplan/+page.svelte index 4919628..582c069 100644 --- a/src/routes/(app)/fahrplan/+page.svelte +++ b/src/routes/(app)/fahrplan/+page.svelte @@ -460,8 +460,8 @@ <Loader kind="active" percent={progressKind === 'waiting' - ? undefined - : ((now - lastFetchAt) * 100) / fetchDelay} + ? ((now - lastFetchAt) * 100) / fetchDelay + : undefined} /> </div> <div class="p-3"> |