mirror of
https://github.com/open-webui/open-webui
synced 2024-11-28 15:05:07 +00:00
fix: older many model chat compatibility
This commit is contained in:
parent
f036aa0a48
commit
8843898a8c
@ -211,7 +211,7 @@
|
||||
{#if !readOnly && isLastMessage}
|
||||
{#if !Object.keys(groupedMessages).find((modelIdx) => {
|
||||
const { messages } = groupedMessages[modelIdx];
|
||||
return !messages[groupedMessagesIdx[modelIdx]].done;
|
||||
return !messages[groupedMessagesIdx[modelIdx]]?.done ?? false;
|
||||
})}
|
||||
<div class="flex justify-end">
|
||||
<div class="w-full">
|
||||
|
Loading…
Reference in New Issue
Block a user