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
f78e6a5f
Commit
f78e6a5f
authored
Jun 07, 2024
by
Timothy J. Baek
Browse files
fix: auto playback
parent
411e6c2f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/lib/components/chat/Chat.svelte
src/lib/components/chat/Chat.svelte
+3
-2
No files found.
src/lib/components/chat/Chat.svelte
View file @
f78e6a5f
...
...
@@ -751,7 +751,7 @@
copyToClipboard(responseMessage.content);
}
if ($settings.responseAutoPlayback) {
if ($settings.responseAutoPlayback
&& !$showCallOverlay
) {
await tick();
document.getElementById(`speak-button-${responseMessage.id}`)?.click();
}
...
...
@@ -977,8 +977,9 @@
copyToClipboard(responseMessage.content);
}
if ($settings.responseAutoPlayback) {
if ($settings.responseAutoPlayback
&& !$showCallOverlay
) {
await tick();
document.getElementById(`speak-button-${responseMessage.id}`)?.click();
}
...
...
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