Merge pull request #1813 from open-webui/doge

feat: much wow doge
This commit is contained in:
Timothy Jaeryang Baek 2024-04-27 20:55:10 -07:00 committed by GitHub
commit f935acc6bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 3 deletions

View file

@ -38,8 +38,8 @@
/> />
{:else} {:else}
<img <img
src={models.length === 1 src={$i18n.language === 'dg-DG'
? `${WEBUI_BASE_URL}/static/favicon.png` ? `/doge.png`
: `${WEBUI_BASE_URL}/static/favicon.png`} : `${WEBUI_BASE_URL}/static/favicon.png`}
class=" size-12 rounded-full border-[1px] border-gray-200 dark:border-none" class=" size-12 rounded-full border-[1px] border-gray-200 dark:border-none"
alt="logo" alt="logo"

View file

@ -325,7 +325,9 @@
{#key message.id} {#key message.id}
<div class=" flex w-full message-{message.id}" id="message-{message.id}"> <div class=" flex w-full message-{message.id}" id="message-{message.id}">
<ProfileImage <ProfileImage
src={modelfiles[message.model]?.imageUrl ?? `${WEBUI_BASE_URL}/static/favicon.png`} src={modelfiles[message.model]?.imageUrl ?? $i18n.language === 'dg-DG'
? `/doge.png`
: `${WEBUI_BASE_URL}/static/favicon.png`}
/> />
<div class="w-full overflow-hidden"> <div class="w-full overflow-hidden">

BIN
static/doge.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 394 KiB