Skip to content

Commit 080dd97

Browse files
committed
fix(next-tick): revert 60da366
the condition is no longer necessary after reverting back to microtask only nextTick implementation, and fix #8436
1 parent 850555d commit 080dd97

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/platforms/web/runtime/modules/dom-props.js

-4
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,6 @@ function isDirtyWithModifiers (elm: any, newVal: string): boolean {
8686
const value = elm.value
8787
const modifiers = elm._vModifiers // injected by v-model runtime
8888
if (isDef(modifiers)) {
89-
if (modifiers.lazy) {
90-
// inputs with lazy should only be updated when not in focus
91-
return false
92-
}
9389
if (modifiers.number) {
9490
return toNumber(value) !== toNumber(newVal)
9591
}

0 commit comments

Comments
 (0)