mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-14 21:35:19 +00:00
fix
This commit is contained in:
parent
1ab01170b9
commit
98ec38a8e7
1 changed files with 1 additions and 1 deletions
|
|
@ -317,7 +317,7 @@
|
||||||
required
|
required
|
||||||
>
|
>
|
||||||
<option value={null} class=" text-gray-900">{$i18n.t('Select a base model')}</option>
|
<option value={null} class=" text-gray-900">{$i18n.t('Select a base model')}</option>
|
||||||
{#each $models.filter((m) => m.id !== model.id && !m?.preset) as model}
|
{#each $models.filter((m) => !m?.preset) as model}
|
||||||
<option value={model.id} class=" text-gray-900">{model.name}</option>
|
<option value={model.id} class=" text-gray-900">{model.name}</option>
|
||||||
{/each}
|
{/each}
|
||||||
</select>
|
</select>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue