mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 20: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
|
||||
>
|
||||
<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>
|
||||
{/each}
|
||||
</select>
|
||||
|
|
|
|||
Loading…
Reference in a new issue