mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 05:24:02 +00:00
refac: styling
This commit is contained in:
parent
6c8997fcbc
commit
50951459c9
@ -316,9 +316,9 @@
|
|||||||
bind:value={info.base_model_id}
|
bind:value={info.base_model_id}
|
||||||
required
|
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?.preset) as model}
|
{#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}
|
{/each}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
@ -291,9 +291,9 @@
|
|||||||
bind:value={info.base_model_id}
|
bind:value={info.base_model_id}
|
||||||
required
|
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}
|
{#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}
|
{/each}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user