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
8301a60c
Unverified
Commit
8301a60c
authored
Nov 12, 2023
by
Timothy Jaeryang Baek
Committed by
GitHub
Nov 12, 2023
Browse files
Merge pull request #101 from ollama-webui/dev
fix: model select option text styling
parents
20757f4e
62a5772b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/lib/constants.ts
src/lib/constants.ts
+1
-1
src/routes/+page.svelte
src/routes/+page.svelte
+2
-2
No files found.
src/lib/constants.ts
View file @
8301a60c
...
...
@@ -8,7 +8,7 @@ export const API_BASE_URL =
:
`http://localhost:11434/api`
:
PUBLIC_API_BASE_URL
;
export
const
WEB_UI_VERSION
=
'
v1.0.0-alpha.
3
'
;
export
const
WEB_UI_VERSION
=
'
v1.0.0-alpha.
5
'
;
// Source: https://kit.svelte.dev/docs/modules#$env-static-public
// This feature, akin to $env/static/private, exclusively incorporates environment variables
...
...
src/routes/+page.svelte
View file @
8301a60c
...
...
@@ -1145,13 +1145,13 @@
bind:value=
{selectedModel}
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}
{#if model.name === 'hr'}
<hr
/>
{: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}
{/each}
</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