Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
98ec38a8
Commit
98ec38a8
authored
May 25, 2024
by
Timothy J. Baek
Browse files
fix
parent
1ab01170
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/routes/(app)/workspace/models/create/+page.svelte
src/routes/(app)/workspace/models/create/+page.svelte
+1
-1
No files found.
src/routes/(app)/workspace/models/create/+page.svelte
View file @
98ec38a8
...
@@ -317,7 +317,7 @@
...
@@ -317,7 +317,7 @@
required
required
>
>
<option value={null} class=" text-gray-900">{$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?.preset) as model}
<option value={model.id} class=" text-gray-900">{model.name}</option>
<option value={model.id} class=" text-gray-900">{model.name}</option>
{/each}
{/each}
</select>
</select>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment