Skip to content

Commit

Permalink
Fix TypeError: this.chunks is not a function
Browse files Browse the repository at this point in the history
  • Loading branch information
c-w committed Apr 16, 2019
1 parent 2bdcada commit af26d38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/server/static/js/annotator.vue
Expand Up @@ -58,7 +58,7 @@ export default {
},
chunksWithLabel() {
return this.chunks().filter(r => this.id2label[r.label]);
return this.chunks.filter(r => this.id2label[r.label]);
},
id2label() {
Expand Down

0 comments on commit af26d38

Please sign in to comment.