diff options
| author | ivar <i@oiee.no> | 2025-12-19 22:00:06 +0100 |
|---|---|---|
| committer | ivar <i@oiee.no> | 2025-12-19 22:00:06 +0100 |
| commit | 874e1572298531dde9bc1d3ccdb704af0a045605 (patch) | |
| tree | 2dd684797894eed12fa2cdcc2216f102e1515813 /app/src/lib/ui/button.svelte | |
| parent | 6c65d3947e56530e7ec3976e2955b027b7abe679 (diff) | |
| download | sparebank1-actualbudget-874e1572298531dde9bc1d3ccdb704af0a045605.tar.xz sparebank1-actualbudget-874e1572298531dde9bc1d3ccdb704af0a045605.zip | |
Migrate schema to pg
Diffstat (limited to 'app/src/lib/ui/button.svelte')
| -rw-r--r-- | app/src/lib/ui/button.svelte | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/src/lib/ui/button.svelte b/app/src/lib/ui/button.svelte index 8c66bd2..37b1c97 100644 --- a/app/src/lib/ui/button.svelte +++ b/app/src/lib/ui/button.svelte @@ -1,6 +1,5 @@ <script lang="ts"> import type { HTMLButtonAttributes } from "svelte/elements"; - import { Spinner } from "phosphor-svelte"; let { children, loading, type = "button", ...restProps }: Props = $props(); type Props = { @@ -11,7 +10,7 @@ <button {...restProps} {type}> {@render children?.()} {#if loading} - <Spinner /> + ... {/if} </button> |
