diff --git a/.gitignore b/.gitignore index 32271f8..7e313a4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ .DS_Store node_modules -/build +/build* /.svelte-kit /package .env diff --git a/backend/open_webui/static/splash.png b/backend/open_webui/static/splash.png new file mode 100644 index 0000000..980b14e Binary files /dev/null and b/backend/open_webui/static/splash.png differ diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index 0457a12..b22c314 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -1860,7 +1860,6 @@ - diff --git a/src/lib/components/chat/Messages.svelte b/src/lib/components/chat/Messages.svelte index 7c1c57a..2492b4e 100644 --- a/src/lib/components/chat/Messages.svelte +++ b/src/lib/components/chat/Messages.svelte @@ -24,7 +24,7 @@ const i18n = getContext('i18n'); - export let className = 'h-full flex pt-8'; + export let className = 'h-full flex pt-17'; export let chatId = ''; export let user = $_user; @@ -344,8 +344,8 @@ } }; - - + + {#if Object.keys(history?.messages ?? {}).length == 0} {:else} - + {#key chatId} {#if messages.at(0)?.parentId !== null} diff --git a/static/img/messages.png b/static/img/messages.png new file mode 100644 index 0000000..ea2008b Binary files /dev/null and b/static/img/messages.png differ