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
"...gpu/git@developer.sourcefind.cn:gaoqiong/migraphx.git" did not exist on "c822c48dd38d89c7b9bc7bcbdf9da8543f515b84"
Commit
f78e6a5f
authored
Jun 07, 2024
by
Timothy J. Baek
Browse files
fix: auto playback
parent
411e6c2f
Changes
1
Show 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 @@
...
@@ -751,7 +751,7 @@
copyToClipboard(responseMessage.content);
copyToClipboard(responseMessage.content);
}
}
if ($settings.responseAutoPlayback) {
if ($settings.responseAutoPlayback
&& !$showCallOverlay
) {
await tick();
await tick();
document.getElementById(`speak-button-${responseMessage.id}`)?.click();
document.getElementById(`speak-button-${responseMessage.id}`)?.click();
}
}
...
@@ -977,8 +977,9 @@
...
@@ -977,8 +977,9 @@
copyToClipboard(responseMessage.content);
copyToClipboard(responseMessage.content);
}
}
if ($settings.responseAutoPlayback) {
if ($settings.responseAutoPlayback
&& !$showCallOverlay
) {
await tick();
await tick();
document.getElementById(`speak-button-${responseMessage.id}`)?.click();
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