Browse Source

Fix TypeError: this.chunks is not a function

pull/159/head
Clemens Wolff 5 years ago
parent
commit
af26d38397
1 changed files with 1 additions and 1 deletions
  1. 2
      app/server/static/js/annotator.vue

2
app/server/static/js/annotator.vue

@ -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() {

Loading…
Cancel
Save