open-webui/src/lib/components/chat/Messages/ProfileImage.svelte
Timothy J. Baek 5b2369da5d fix: #2332
2024-05-17 10:56:16 -07:00

18 lines
401 B
Svelte

<script lang="ts">
import { WEBUI_BASE_URL } from '$lib/constants';
export let src = '/user.png';
</script>
<div class=" mr-3">
<img
crossorigin="anonymous"
src={src.startsWith(WEBUI_BASE_URL) ||
src.startsWith('https://www.gravatar.com/avatar/') ||
src.startsWith('data:')
? src
: `/user.png`}
class=" w-8 object-cover rounded-full"
alt="profile"
draggable="false"
/>
</div>