webui: Fix Attachments not being included in completion request (#19731)

* fix: Add missing argument

* chore: update webui build output
This commit is contained in:
Aleksander Grygier 2026-02-19 10:27:38 +01:00 committed by GitHub
parent 8004f3a8d1
commit 03fd9d3bb4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

Binary file not shown.

View File

@ -498,7 +498,8 @@ class ChatStore {
MessageRole.USER,
content,
MessageType.TEXT,
parentIdForUserMessage ?? '-1'
parentIdForUserMessage ?? '-1',
extras
);
if (isNewConversation && content)
await conversationsStore.updateConversationName(currentConv.id, content.trim());