"test/git@developer.sourcefind.cn:zhaoyu6/sglang.git" did not exist on "5b64f006ec2e48b31b86d92a971d2deb183376da"
Commit 3d0b3eb5 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: styling

parent 92e5e6c7
......@@ -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>
......
......@@ -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>
......
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