Skip to content

Commit 3de49c1

Browse files
authored
fix: followup messages not sending (#680)
1 parent 2ea8bba commit 3de49c1

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

packages/ragbits-chat/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
- Add support for live updates and followup messages (#654)
1212
- Fix invalid context structure in requests from FE (#663)
1313
- Arrow Up and Arrow Down now cycle through sent messages in a terminal-like style (#667)
14+
- Fix followup messages not sending (#670)
1415

1516
## 1.0.0 (2025-06-04)
1617

packages/ragbits-chat/src/ragbits/chat/ui-build/assets/FeedbackForm-CJ1iLWzl.js renamed to packages/ragbits-chat/src/ragbits/chat/ui-build/assets/FeedbackForm-DGKRWbmP.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import{aF as a,aG as e,aH as t}from"./index-CHdih0Fl.js";const n={renderer:t,...e,...a};var o=n;export{o as default};

packages/ragbits-chat/src/ragbits/chat/ui-build/assets/index-C5DT89_N.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/ragbits-chat/src/ragbits/chat/ui-build/assets/index-BKAL5KBM.js renamed to packages/ragbits-chat/src/ragbits/chat/ui-build/assets/index-CHdih0Fl.js

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

packages/ragbits-chat/src/ragbits/chat/ui-build/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<link rel="icon" type="image/svg+xml" href="/assets/ragbits-9U4hpuUb.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>Ragbits</title>
8-
<script type="module" crossorigin src="/assets/index-BKAL5KBM.js"></script>
8+
<script type="module" crossorigin src="/assets/index-CHdih0Fl.js"></script>
99
<link rel="stylesheet" crossorigin href="/assets/index-BPwdy74I.css">
1010
</head>
1111

typescript/ui/src/core/components/PromptInput/PromptInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const PromptInput = ({
7474

7575
const handleSubmit = useCallback(
7676
(text?: string) => {
77-
if (!message && !isLoading && text) return;
77+
if (!message && !isLoading && !text) return;
7878

7979
submit(text ?? message);
8080
setQuickMessages((quickMessages) => {

0 commit comments

Comments
 (0)