Commit af9e0cc3 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix

parent 028eb7b3
......@@ -149,7 +149,7 @@
<button
class="px-3 py-1.5 rounded-xl w-full text-left {modelIdx === selectedIdx
? 'bg-gray-50 dark:bg-gray-850 selected-command-option-button'
: ''} {model?.info?.meta?.hidden ? 'hidden' : ''}"
: ''}"
type="button"
on:click={() => {
confirmSelect(model);
......@@ -162,7 +162,7 @@
<div class="flex font-medium text-black dark:text-gray-100 line-clamp-1">
<img
src={model?.info?.meta?.profile_image_url ?? '/static/favicon.png'}
alt={model.name}
alt={model?.name ?? model.id}
class="rounded-full size-6 items-center mr-2"
/>
{model.name}
......
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