Fixed warning

pull/496/head
Cagatay Civici 2020-09-24 12:01:53 +03:00
parent 57374fc2b7
commit 1ebf30b229
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ export default {
},
computed: {
filled() {
return (this.value != null && this.value.toString().length > 0)
return (this.modelValue != null && this.modelValue.toString().length > 0)
}
}
}