Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed McConnell committed Dec 14, 2024
1 parent 5cb693c commit 483189a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/commit.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "commit": "f87522f106fc8471a864328cf1b484d27490a51b" }
{ "commit": "5cb693c4158e25c581db519a4dc62e79be160b86" }
6 changes: 4 additions & 2 deletions app/components/chat/BaseChat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -425,15 +425,17 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
}

event.preventDefault();

if (isStreaming) {
handleStop?.();
return;
}

// ignore if using input method engine
if (event.nativeEvent.isComposing) {
return
return;
}

handleSendMessage?.(event);
}
}}
Expand Down
1 change: 0 additions & 1 deletion app/lib/stores/workbench.ts
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,6 @@ export class WorkbenchStore {

const action = artifact.runner.actions.get()[data.actionId];


if (!action || action.executed) {
return;
}
Expand Down

0 comments on commit 483189a

Please sign in to comment.