We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01937a1 commit 7ef3ddaCopy full SHA for 7ef3dda
packages/vuetify/src/components/VForm/VForm.ts
@@ -119,13 +119,13 @@ export default mixins(
119
120
if (!found) return
121
122
- const unwatch = this.watchers.find(i => i.$.uid === found.$.uid)
+ const unwatch = this.watchers.find(i => i._uid === found.$.uid)
123
if (unwatch) {
124
unwatch.valid()
125
unwatch.shouldValidate()
126
}
127
128
- this.watchers = this.watchers.filter(i => i.$.uid !== found.$.uid)
+ this.watchers = this.watchers.filter(i => i._uid !== found.$.uid)
129
this.inputs = this.inputs.filter(i => i.$.uid !== found.$.uid)
130
delete this.errorBag[found.$.uid]
131
},
0 commit comments