Skip to content

Commit

Permalink
Fix error "TypeError: this.value.push is not a function" in checklist
Browse files Browse the repository at this point in the history
  • Loading branch information
Lionel Bijaoui committed Mar 13, 2017
1 parent 6d08c4a commit c66b0e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fields/core/fieldChecklist.vue
Expand Up @@ -86,7 +86,7 @@
onChanged(event, item) {
if (isNil(this.value) || !Array.isArray(this.value)){
this.$set(this, "value", []);
this.value = [];
}
if (event.target.checked) {
Expand Down

0 comments on commit c66b0e9

Please sign in to comment.