mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-15 13:55:19 +00:00
fix: all response messages re-rendering on new message
This commit is contained in:
parent
5c8fb4b3d5
commit
a3094bcd1b
1 changed files with 1 additions and 1 deletions
|
|
@ -334,7 +334,7 @@
|
||||||
copyToClipboard={copyToClipboardWithToast}
|
copyToClipboard={copyToClipboardWithToast}
|
||||||
/>
|
/>
|
||||||
{:else if (history.messages[message.parentId]?.models?.length ?? 1) === 1}
|
{:else if (history.messages[message.parentId]?.models?.length ?? 1) === 1}
|
||||||
{#key message.id && history.currentId}
|
{#key message.id}
|
||||||
<ResponseMessage
|
<ResponseMessage
|
||||||
{message}
|
{message}
|
||||||
siblings={history.messages[message.parentId]?.childrenIds ?? []}
|
siblings={history.messages[message.parentId]?.childrenIds ?? []}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue