Skip to content

Commit

Permalink
?が抜けていた
Browse files Browse the repository at this point in the history
  • Loading branch information
thiramisu committed Jul 26, 2023
1 parent be30169 commit 0d0e95f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DictionaryManageDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ const yomiFocus = (event?: KeyboardEvent) => {
if (event && event.isComposing) return;
yomiInput.value?.focus();
};
const setYomiWhenEnter = (event: KeyboardEvent) => {
const setYomiWhenEnter = (event?: KeyboardEvent) => {
if (event && event.isComposing) return;
setYomi(yomi.value);
};
Expand Down

0 comments on commit 0d0e95f

Please sign in to comment.