diff --git a/resources/assets/js/components/UserInput.vue b/resources/assets/js/components/UserInput.vue index 9721af58d..06148e0b7 100755 --- a/resources/assets/js/components/UserInput.vue +++ b/resources/assets/js/components/UserInput.vue @@ -129,7 +129,10 @@ watch: { value: { handler() { - this.valueChange() + const tmpId = this._tmpId = $A.randomString(6) + setTimeout(() => { + if (tmpId === this._tmpId) this.valueChange() + }, 10) }, immediate: true, },