Skip to content

Commit

Permalink
Fix Enter press
Browse files Browse the repository at this point in the history
  • Loading branch information
elizachi committed Dec 4, 2024
1 parent 79fa04e commit 27d14cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codex-ui/src/vue/components/confirm/Confirm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const props = withDefaults(
*/
const confirmOnEnter = (event: { key: string }) => {
if (event.key === 'Enter') {
props.onConfirm;
props.onConfirm();
}
};
Expand Down

0 comments on commit 27d14cd

Please sign in to comment.