Added Loading Spinner
All checks were successful
Build and Push Docker Image / build-and-push (pull_request) Successful in 1m24s

This commit is contained in:
2025-02-15 14:47:59 +00:00
parent c3f0be36a3
commit 27488fe860
3 changed files with 77 additions and 6 deletions

View File

@@ -4,6 +4,7 @@
import { repos, loadRepos, addToast } from "$lib/stores";
import { timeSince } from "$lib/api/git";
import Card from "$lib/components/Cards/Card.svelte";
import Loading from "$lib/components/Loading.svelte";
onMount(loadRepos);
</script>
@@ -33,6 +34,6 @@
{/each}
</div>
{:else}
<p>Loading repositories...</p>
<Loading />
{/if}
</div>