From cde826eb4aa1e0064a8b2b27cc6b16ae358a0879 Mon Sep 17 00:00:00 2001 From: Morgan Date: Sun, 6 Jul 2025 13:31:32 +0900 Subject: [PATCH] ff --- src/app.scss | 5 ++++- src/lib/ChatMenuItem.svelte | 2 +- src/lib/Home.svelte | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app.scss b/src/app.scss index f5affe5..671d1fe 100644 --- a/src/app.scss +++ b/src/app.scss @@ -248,10 +248,13 @@ select option.is-default { } .message { - border-radius: 0px !important; margin-bottom: 0px !important; } +.chat-message { + padding: 10px 20px; +} + .user-message>.message-body { border-radius: 0; border-width: 0; diff --git a/src/lib/ChatMenuItem.svelte b/src/lib/ChatMenuItem.svelte index ddaf72f..196a1b0 100644 --- a/src/lib/ChatMenuItem.svelte +++ b/src/lib/ChatMenuItem.svelte @@ -95,7 +95,7 @@ {/if} - {chat.name || `New Chat`} + {chat.name || 'Error'} {/if} \ No newline at end of file diff --git a/src/lib/Home.svelte b/src/lib/Home.svelte index e43dac5..26c3007 100644 --- a/src/lib/Home.svelte +++ b/src/lib/Home.svelte @@ -14,7 +14,7 @@ let hasModels = hasActiveModels() onMount(() => { if (!$started) { $started = true - // console.log('started', apiKey, $lastChatId, getChat($lastChatId)) + console.log('started', apiKey, $lastChatId, getChat($lastChatId)) if (hasActiveModels() && getChat($lastChatId)) { const chatId = $lastChatId $lastChatId = ''