Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
b1081c2c
"git@developer.sourcefind.cn:modelzoo/deepstream-app.git" did not exist on "77e9fc8cc58ea12322adddc53ccc84b2f389bb4d"
Commit
b1081c2c
authored
Dec 05, 2023
by
Timothy J. Baek
Browse files
feat: use display name if it exists
parent
9de56550
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/lib/components/chat/Messages.svelte
src/lib/components/chat/Messages.svelte
+5
-1
No files found.
src/lib/components/chat/Messages.svelte
View file @
b1081c2c
...
@@ -325,7 +325,11 @@
...
@@ -325,7 +325,11 @@
</div>
</div>
{#if selectedModelfile.user}
{#if selectedModelfile.user}
<div
class=
"mt-0.5 text-sm font-normal text-gray-500 dark:text-gray-500"
>
<div
class=
"mt-0.5 text-sm font-normal text-gray-500 dark:text-gray-500"
>
By
<a
href=
"https://ollamahub.com/"
>
@{selectedModelfile.user.username}
</a>
By
<a
href=
"https://ollamahub.com/"
>
{selectedModelfile.user.name
? selectedModelfile.user.name
: `@${selectedModelfile.user.username}`}
</a
>
</div>
</div>
{/if}
{/if}
{:else}
{:else}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment