mirror of
https://github.com/open-webui/open-webui.git
synced 2026-09-02 03:59:45 +02:00
refac
This commit is contained in:
@@ -1219,7 +1219,11 @@
|
||||
} else if (type === 'chat:active') {
|
||||
if (!data?.active) {
|
||||
taskIds = null;
|
||||
if ($chatId && !$temporaryChatEnabled && hasPendingAssistantLeaf()) {
|
||||
if (
|
||||
$chatId &&
|
||||
!$temporaryChatEnabled &&
|
||||
hasPendingAssistantLeaf(event?.message_id ?? null)
|
||||
) {
|
||||
await loadChat();
|
||||
}
|
||||
if ($chatId && !$temporaryChatEnabled) {
|
||||
@@ -1499,9 +1503,9 @@
|
||||
} catch {}
|
||||
};
|
||||
|
||||
const hasPendingAssistantLeaf = () =>
|
||||
Object.values(history.messages).some(
|
||||
(message) =>
|
||||
const hasPendingAssistantLeaf = (messageId: string | null = null) =>
|
||||
(messageId ? [history.messages[messageId]] : Object.values(history.messages)).some(
|
||||
(message: any) =>
|
||||
message?.role === 'assistant' && !message.done && (message.childrenIds?.length ?? 0) === 0
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user