diff options
| author | Adam Malczewski <[email protected]> | 2026-06-21 14:22:53 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-06-21 14:22:53 +0900 |
| commit | b12acb26276fa8539d312b575218d2fcb6e9024e (patch) | |
| tree | 8d2f2f9b2254c432440e1ed2c20bb5d26dba6962 | |
| parent | 1b09eea04911d73cdf3f979d4f19dcf5dc20c461 (diff) | |
| download | dispatch-web-b12acb26276fa8539d312b575218d2fcb6e9024e.tar.gz dispatch-web-b12acb26276fa8539d312b575218d2fcb6e9024e.zip | |
fix(todo): use static filled circle for in_progress instead of spinner
| -rw-r--r-- | src/features/surface-host/ui/TodoList.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/features/surface-host/ui/TodoList.svelte b/src/features/surface-host/ui/TodoList.svelte index 8dbd995..ca49f34 100644 --- a/src/features/surface-host/ui/TodoList.svelte +++ b/src/features/surface-host/ui/TodoList.svelte @@ -19,7 +19,7 @@ <!-- Status indicator --> <span class="mt-0.5 shrink-0"> {#if todo.status === "in_progress"} - <span class="loading loading-spinner loading-xs text-primary"></span> + <span class="block h-4 w-4 rounded-full bg-primary"></span> {:else if todo.status === "completed"} <svg xmlns="http://www.w3.org/2000/svg" |
