mirror of
https://github.com/open-webui/open-webui
synced 2024-11-21 15:47:49 +00:00
refac: styling
This commit is contained in:
parent
6c8997fcbc
commit
50951459c9
@ -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 New Issue
Block a user