forked from open-webui/open-webui
fix: model select option text styling
This commit is contained in:
parent
9afb7fff02
commit
a938ab3023
1 changed files with 2 additions and 2 deletions
|
@ -1145,13 +1145,13 @@
|
||||||
bind:value={selectedModel}
|
bind:value={selectedModel}
|
||||||
disabled={messages.length != 0}
|
disabled={messages.length != 0}
|
||||||
>
|
>
|
||||||
<option value="" selected>Select a model</option>
|
<option class=" text-gray-700" value="" selected>Select a model</option>
|
||||||
|
|
||||||
{#each models as model}
|
{#each models as model}
|
||||||
{#if model.name === 'hr'}
|
{#if model.name === 'hr'}
|
||||||
<hr />
|
<hr />
|
||||||
{:else}
|
{:else}
|
||||||
<option value={model.name} class=" text-lg">{model.name}</option>
|
<option value={model.name} class="text-gray-700 text-lg">{model.name}</option>
|
||||||
{/if}
|
{/if}
|
||||||
{/each}
|
{/each}
|
||||||
</select>
|
</select>
|
||||||
|
|
Loading…
Reference in a new issue