We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71c0b4e commit ff8f8a8Copy full SHA for ff8f8a8
src/frontend_react/src/components/content/PlanChat.tsx
@@ -90,12 +90,11 @@ const PlanChat: React.FC<PlanChatProps> = ({
90
<ChatInput
91
value={input}
92
onChange={setInput}
93
- onEnter={OnChatSubmit}
94
-
+ onEnter={() => OnChatSubmit(input)}
95
>
96
<Button
97
appearance="transparent"
98
- onClick={OnChatSubmit}
+ onClick={() => OnChatSubmit(input)}
99
icon={<Send />}
100
disabled={planData.hasHumanClarificationRequest && (isTyping || !input.trim())}
101
/>
0 commit comments