feat: Use `model` property for displaying the `repo/model-name` naming format

This commit is contained in:
Aleksander Grygier 2025-11-23 21:19:00 +01:00
parent 6282537a8b
commit 1f0cb3ab26
1 changed files with 2 additions and 2 deletions

View File

@ -309,7 +309,7 @@
<Package class="h-3.5 w-3.5" />
<span class="truncate font-medium">
{selectedOption?.name || 'Select model'}
{selectedOption?.model || 'Select model'}
</span>
{#if updating}
@ -367,7 +367,7 @@
aria-selected={currentModel === option.model || activeId === option.id}
onclick={() => handleSelect(option.id)}
>
<span class="truncate">{option.name}</span>
<span class="truncate">{option.model}</span>
</button>
{/each}
</div>