Skip to content

Commit

Permalink
fix(core.js): allow native handling of composition events when no mas…
Browse files Browse the repository at this point in the history
…k is passed
  • Loading branch information
Sarah Leventhal committed Jun 13, 2023
1 parent fd20542 commit 58e8be8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export function updateValue(el, vnode, { emit = true, force = false } = {}, even
let currentValue = vnode?.data?.model?.value || el.value

// manipulating input value while text is being composed can lead to inputs being duplicated
if (isComposing) {
if (config.mask && isComposing) {
return
}

Expand Down

0 comments on commit 58e8be8

Please sign in to comment.