diff --git a/src/lib/components/chat/Navbar.svelte b/src/lib/components/chat/Navbar.svelte index d87f7f10b5..b26aef7ddb 100644 --- a/src/lib/components/chat/Navbar.svelte +++ b/src/lib/components/chat/Navbar.svelte @@ -36,11 +36,11 @@ import EllipsisHorizontal from '../icons/EllipsisHorizontal.svelte'; import ChatPlus from '../icons/ChatPlus.svelte'; + import ChatCheck from '../icons/ChatCheck.svelte'; const i18n = getContext('i18n'); export let initNewChat: Function; - export let title: string = $WEBUI_NAME; export let shareEnabled: boolean = false; export let chat; @@ -152,13 +152,31 @@ }} >
- +
{/if} {/if} + {#if $mobile && !$temporaryChatEnabled && chat && chat.id} + + + + {/if} + {#if shareEnabled && chat && (chat.id || $temporaryChatEnabled)} {/if} - {#if $mobile} - - - - {/if} - {#if $user !== undefined && $user !== null} + export let className = 'w-4 h-4'; + export let strokeWidth = '1.5'; + + +