mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-11 20:05:19 +00:00
refac: styling
This commit is contained in:
parent
6c8997fcbc
commit
50951459c9
2 changed files with 5 additions and 5 deletions
|
|
@ -316,9 +316,9 @@
|
|||
bind:value={info.base_model_id}
|
||||
required
|
||||
>
|
||||
<option value={null} class=" text-gray-500">{$i18n.t('Select a base model')}</option>
|
||||
{#each $models.filter((m) => !m?.preset) as model}
|
||||
<option value={model.id} class="text-gray-500">{model.name}</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}
|
||||
<option value={model.id} class=" text-gray-900">{model.name}</option>
|
||||
{/each}
|
||||
</select>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -291,9 +291,9 @@
|
|||
bind:value={info.base_model_id}
|
||||
required
|
||||
>
|
||||
<option value={null} class=" text-gray-500">{$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}
|
||||
<option value={model.id} class=" text-gray-500">{model.name}</option>
|
||||
<option value={model.id} class=" text-gray-900">{model.name}</option>
|
||||
{/each}
|
||||
</select>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue