1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-07 14:25:37 +00:00

Fix number input validation bug

This commit is contained in:
Bram Wiepjes 2025-03-05 20:33:08 +01:00
parent 5c558f3b12
commit e09f8b9745

View file

@ -43,8 +43,10 @@ export default {
clearTimeout(delayTimeout)
},
},
mounted() {
created() {
this.copy = this.prepareCopy(this.filter.value)
},
mounted() {
if (this.copy) {
this.v$.$touch()
}