"git@developer.sourcefind.cn:modelzoo/deepstream-app.git" did not exist on "77e9fc8cc58ea12322adddc53ccc84b2f389bb4d"
Commit b1081c2c authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

feat: use display name if it exists

parent 9de56550
...@@ -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}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment