Skip to content

Commit 3f35ba2

Browse files
authored
Merge pull request open-webui#16421 from open-webui/dev
0.6.20
2 parents 2c3655a + 2fa2728 commit 3f35ba2

File tree

7 files changed

+29
-6
lines changed

7 files changed

+29
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.6.20] - 2025-08-10
9+
10+
### Fixed
11+
12+
- 🛠️ **Quick Actions "Add" Behavior**: Fixed a bug where using the "Add" button in Quick Actions would add the resulting message as the very first message in the chat, instead of appending it to the latest message.
13+
814
## [0.6.19] - 2025-08-09
915

1016
### Added

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Want to learn more about Open WebUI's features? Check out our [Open WebUI docume
7070
#### Emerald
7171

7272
<table>
73-
<tr>
73+
<!-- <tr>
7474
<td>
7575
<a href="https://n8n.io/" target="_blank">
7676
<img src="https://docs.openwebui.com/sponsors/logos/n8n.png" alt="n8n" style="width: 8rem; height: 8rem; border-radius: .75rem;" />
@@ -79,7 +79,7 @@ Want to learn more about Open WebUI's features? Check out our [Open WebUI docume
7979
<td>
8080
<a href="https://n8n.io/">n8n</a> • Does your interface have a backend yet?<br>Try <a href="https://n8n.io/">n8n</a>
8181
</td>
82-
</tr>
82+
</tr> -->
8383
<tr>
8484
<td>
8585
<a href="https://tailscale.com/blog/self-host-a-local-ai-stack/?utm_source=OpenWebUI&utm_medium=paid-ad-placement&utm_campaign=OpenWebUI-Docs" target="_blank">
@@ -90,6 +90,16 @@ Want to learn more about Open WebUI's features? Check out our [Open WebUI docume
9090
<a href="https://tailscale.com/blog/self-host-a-local-ai-stack/?utm_source=OpenWebUI&utm_medium=paid-ad-placement&utm_campaign=OpenWebUI-Docs">Tailscale</a> • Connect self-hosted AI to any device with Tailscale
9191
</td>
9292
</tr>
93+
<tr>
94+
<td>
95+
<a href="https://warp.dev/open-webui" target="_blank">
96+
<img src="https://docs.openwebui.com/sponsors/logos/warp.png" alt="Warp" style="width: 8rem; height: 8rem; border-radius: .75rem;" />
97+
</a>
98+
</td>
99+
<td>
100+
<a href="https://warp.dev/open-webui">Warp</a> • The intelligent terminal for developers
101+
</td>
102+
</tr>
93103
</table>
94104

95105
---

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "open-webui",
3-
"version": "0.6.19",
3+
"version": "0.6.20",
44
"private": true,
55
"scripts": {
66
"dev": "npm run pyodide:fetch && vite dev --host",

src/lib/components/chat/ContentRenderer/FloatingButtons.svelte

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
import Skeleton from '../Messages/Skeleton.svelte';
1616
1717
export let id = '';
18+
export let messageId = '';
19+
1820
export let model = null;
1921
export let messages = [];
2022
export let actions = [];
@@ -211,7 +213,7 @@
211213
212214
onAdd({
213215
modelId: model,
214-
parentId: id,
216+
parentId: messageId,
215217
messages: messages
216218
});
217219
};

src/lib/components/chat/Messages/ContentRenderer.svelte

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717
1818
export let id;
1919
export let content;
20+
2021
export let history;
22+
export let messageId;
23+
2124
export let selectedModels = [];
2225
2326
export let done = true;
@@ -196,6 +199,7 @@
196199
<FloatingButtons
197200
bind:this={floatingButtonsElement}
198201
{id}
202+
{messageId}
199203
actions={$settings?.floatingActionButtons ?? []}
200204
model={(selectedModels ?? []).includes(model?.id)
201205
? model?.id

src/lib/components/chat/Messages/ResponseMessage.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -800,6 +800,7 @@
800800
<!-- unless message.error === true which is legacy error handling, where the error message is stored in message.content -->
801801
<ContentRenderer
802802
id={`${chatId}-${message.id}`}
803+
messageId={message.id}
803804
{history}
804805
{selectedModels}
805806
content={message.content}

0 commit comments

Comments
 (0)