mirror of
https://github.com/open-webui/open-webui
synced 2025-04-03 12:31:32 +00:00
fix: cancel chat generation on route change
This commit is contained in:
parent
b8337db9d5
commit
981ec89e15
@ -80,6 +80,11 @@
|
|||||||
//////////////////////////
|
//////////////////////////
|
||||||
|
|
||||||
const initNewChat = async () => {
|
const initNewChat = async () => {
|
||||||
|
if (currentRequestId !== null) {
|
||||||
|
await cancelChatCompletion(localStorage.token, currentRequestId);
|
||||||
|
currentRequestId = null;
|
||||||
|
}
|
||||||
|
|
||||||
window.history.replaceState(history.state, '', `/`);
|
window.history.replaceState(history.state, '', `/`);
|
||||||
|
|
||||||
console.log('initNewChat');
|
console.log('initNewChat');
|
||||||
|
@ -705,7 +705,12 @@
|
|||||||
<Navbar
|
<Navbar
|
||||||
{title}
|
{title}
|
||||||
shareEnabled={messages.length > 0}
|
shareEnabled={messages.length > 0}
|
||||||
initNewChat={() => {
|
initNewChat={async () => {
|
||||||
|
if (currentRequestId !== null) {
|
||||||
|
await cancelChatCompletion(localStorage.token, currentRequestId);
|
||||||
|
currentRequestId = null;
|
||||||
|
}
|
||||||
|
|
||||||
goto('/');
|
goto('/');
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
Loading…
Reference in New Issue
Block a user