diff options
| author | Adam Malczewski <[email protected]> | 2026-06-27 18:26:29 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-06-27 18:26:29 +0900 |
| commit | e81df4c4936549fa674584c076e9e59fa4c920d5 (patch) | |
| tree | d01ee2c17e069a5d05528d27fafd7a9de23e2801 /src/features/chat | |
| parent | f79e3fcd846f24582ea8c536cf55f1f72d75d967 (diff) | |
| parent | 5bd0b63a7f0cafd53fbd4ba287f8e2cf2b59a4a1 (diff) | |
| download | dispatch-web-e81df4c4936549fa674584c076e9e59fa4c920d5.tar.gz dispatch-web-e81df4c4936549fa674584c076e9e59fa4c920d5.zip | |
Merge branch 'dev' into feature/provider-concurrency
Diffstat (limited to 'src/features/chat')
| -rw-r--r-- | src/features/chat/ui/ChatView.svelte | 2 | ||||
| -rw-r--r-- | src/features/chat/ui/Composer.svelte | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/features/chat/ui/ChatView.svelte b/src/features/chat/ui/ChatView.svelte index e72f639..b49f7b4 100644 --- a/src/features/chat/ui/ChatView.svelte +++ b/src/features/chat/ui/ChatView.svelte @@ -210,7 +210,7 @@ {/if} {/snippet} -<div class="flex flex-col gap-2 p-4 pl-6" role="log" aria-live="polite"> +<div class="flex flex-col gap-2 pt-4 pb-4 pl-6" role="log" aria-live="polite"> {#if hasEarlier && onShowEarlier} <!-- Chat limit: older chunks are unloaded; offer to page them back in. --> <div class="flex justify-center"> diff --git a/src/features/chat/ui/Composer.svelte b/src/features/chat/ui/Composer.svelte index 96b4b3a..2f3d820 100644 --- a/src/features/chat/ui/Composer.svelte +++ b/src/features/chat/ui/Composer.svelte @@ -136,7 +136,7 @@ <div class="flex items-center gap-2 px-4 pb-2 text-xs text-base-content/50"> <span class="shrink-0"> {#if status === "running"} - <span class="loading loading-spinner loading-xs text-primary"></span> + <span class="loading loading-dots loading-xs text-primary"></span> {:else if status === "error"} <svg xmlns="http://www.w3.org/2000/svg" |
