Commit 50951459 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

refac: styling

parent 6c8997fc
......@@ -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>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment