fix: styling

This commit is contained in:
Timothy J. Baek 2024-05-25 13:13:25 -07:00
parent 92e5e6c78e
commit 3d0b3eb577
2 changed files with 4 additions and 8 deletions

View File

@ -316,11 +316,9 @@
bind:value={info.base_model_id}
required
>
<option value={null} class=" placeholder:text-gray-500"
>{$i18n.t('Select a base model')}</option
>
<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}>{model.name}</option>
<option value={model.id} class="text-gray-500">{model.name}</option>
{/each}
</select>
</div>

View File

@ -291,11 +291,9 @@
bind:value={info.base_model_id}
required
>
<option value={null} class=" placeholder:text-gray-500"
>{$i18n.t('Select a base model')}</option
>
<option value={null} class=" text-gray-500">{$i18n.t('Select a base model')}</option>
{#each $models.filter((m) => m.id !== model.id && !m?.preset) as model}
<option value={model.id}>{model.name}</option>
<option value={model.id} class=" text-gray-500">{model.name}</option>
{/each}
</select>
</div>