Skip to content

Commit

Permalink
fix: textarea should not autofocus
Browse files Browse the repository at this point in the history
  • Loading branch information
yb6b committed Jun 25, 2024
1 parent 34bfd1e commit 8c11bc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/ime/InputMethod.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function commit(words: string) {
function onClickCandidate(card: HanziCard) {
commit(card.name)
textarea.value?.focus()
// textarea.value?.focus()
candidatePageIndex.value = 0
candidateCodes.value = ''
}
Expand Down

0 comments on commit 8c11bc2

Please sign in to comment.