Browse Source

Bugfix: passing project id to getDocumentList method

pull/341/head
Hironsan 5 years ago
parent
commit
9616510d30
3 changed files with 9 additions and 3 deletions
  1. 4
      frontend/components/containers/EntityItemBox.vue
  2. 4
      frontend/components/containers/Seq2seqContainer.vue
  3. 4
      frontend/components/containers/TextClassification.vue

4
frontend/components/containers/EntityItemBox.vue

@ -26,7 +26,9 @@ export default {
created() {
this.getLabelList()
this.getDocumentList()
this.getDocumentList({
projectId: this.$route.params.id
})
},
methods: {

4
frontend/components/containers/Seq2seqContainer.vue

@ -33,7 +33,9 @@ export default {
},
created() {
this.getDocumentList()
this.getDocumentList({
projectId: this.$route.params.id
})
},
methods: {

4
frontend/components/containers/TextClassification.vue

@ -35,7 +35,9 @@ export default {
created() {
this.getLabelList()
this.getDocumentList()
this.getDocumentList({
projectId: this.$route.params.id
})
},
methods: {

Loading…
Cancel
Save