merge main

This commit is contained in:
Ed McConnell 2024-12-14 09:56:51 -05:00
parent 7a31db904d
commit 4db916928c
3 changed files with 5 additions and 4 deletions

View File

@ -1 +1 @@
{ "commit": "6ffcdd8b3c54e2560b327ca1b4f4eb33ba54c0db" } { "commit": "7a31db904d19e75a68d6a6db8f72fe7949a6f19b" }

View File

@ -441,10 +441,12 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
handleStop?.(); handleStop?.();
return; return;
} }
// ignore if using input method engine // ignore if using input method engine
if (event.nativeEvent.isComposing) { if (event.nativeEvent.isComposing) {
return return;
} }
handleSendMessage?.(event); handleSendMessage?.(event);
} }
}} }}

View File

@ -297,7 +297,6 @@ export class WorkbenchStore {
const action = artifact.runner.actions.get()[data.actionId]; const action = artifact.runner.actions.get()[data.actionId];
if (!action || action.executed) { if (!action || action.executed) {
return; return;
} }