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
cfc78ded
Unverified
Commit
cfc78ded
authored
Jun 02, 2024
by
Timothy Jaeryang Baek
Committed by
GitHub
Jun 02, 2024
Browse files
Merge pull request #2736 from open-webui/dev
fix
parents
8eb81c91
642079ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
CHANGELOG.md
CHANGELOG.md
+1
-1
src/lib/components/chat/Messages/UserMessage.svelte
src/lib/components/chat/Messages/UserMessage.svelte
+2
-2
No files found.
CHANGELOG.md
View file @
cfc78ded
...
@@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
...
@@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
### Added
-
**🖱️ Single Model Export Button**
: Easily export models with just one click using the new single model export button.
-
**🖱️ Single Model Export Button**
: Easily export models with just one click using the new single model export button.
-
**🖥️ Advanced Parameters Support**
: Added support for
`
num_thread
`
,
`
use_mmap
`
, and
`
use_mlock
`
parameters for Ollama.
-
**🖥️ Advanced Parameters Support**
: Added support for
'
num_thread
'
,
'
use_mmap
'
, and
'
use_mlock
'
parameters for Ollama.
-
**🌐 Improved Vietnamese Translation**
: Enhanced Vietnamese language support for a better user experience for our Vietnamese-speaking community.
-
**🌐 Improved Vietnamese Translation**
: Enhanced Vietnamese language support for a better user experience for our Vietnamese-speaking community.
### Fixed
### Fixed
...
...
src/lib/components/chat/Messages/UserMessage.svelte
View file @
cfc78ded
...
@@ -196,7 +196,7 @@
...
@@ -196,7 +196,7 @@
<div class=" mt-2 mb-1 flex justify-end space-x-1.5 text-sm font-medium">
<div class=" mt-2 mb-1 flex justify-end space-x-1.5 text-sm font-medium">
<button
<button
id="close-edit-message-button"
id="close-edit-message-button"
class="px-4 py-2 bg-white hover:bg-gray-100 text-gray-800 transition rounded-3xl"
class="px-4 py-2 bg-white
dark:bg-gray-900
hover:bg-gray-100 text-gray-800
dark:text-gray-100
transition rounded-3xl"
on:click={() => {
on:click={() => {
cancelEditMessage();
cancelEditMessage();
}}
}}
...
@@ -206,7 +206,7 @@
...
@@ -206,7 +206,7 @@
<button
<button
id="save-edit-message-button"
id="save-edit-message-button"
class=" px-4 py-2 bg-gray-900 hover:bg-gray-850 text-gray-100 transition rounded-3xl"
class=" px-4 py-2 bg-gray-900
dark:bg-white
hover:bg-gray-850 text-gray-100
dark:text-gray-800
transition rounded-3xl"
on:click={() => {
on:click={() => {
editMessageConfirmHandler();
editMessageConfirmHandler();
}}
}}
...
...
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