Skip to content

Commit

Permalink
fix: fix #2681 (#2682)
Browse files Browse the repository at this point in the history
  • Loading branch information
lizheming authored Aug 24, 2024
1 parent 1bee055 commit 53b1384
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/client/src/components/CommentBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,10 @@ const insert = (content: string): void => {
};
const onKeyDown = (event: KeyboardEvent): void => {
if (isSubmitting.value) {
return;
}
const key = event.key;
// Shortcut key
Expand Down

0 comments on commit 53b1384

Please sign in to comment.