diff --git a/frontend/components/example/AudioList.vue b/frontend/components/example/AudioList.vue index 58bb3585..95dedc95 100644 --- a/frontend/components/example/AudioList.vue +++ b/frontend/components/example/AudioList.vue @@ -98,6 +98,11 @@ export default Vue.extend({ computed: { headers() { return [ + { + text: 'ID', + value: 'id', + sortable: false + }, { text: 'Audio', value: 'url', diff --git a/frontend/components/example/DocumentList.vue b/frontend/components/example/DocumentList.vue index 0ccf3557..fd7c3aff 100644 --- a/frontend/components/example/DocumentList.vue +++ b/frontend/components/example/DocumentList.vue @@ -92,6 +92,11 @@ export default Vue.extend({ computed: { headers() { return [ + { + text: 'ID', + value: 'id', + sortable: false + }, { text: this.$t('dataset.text'), value: 'text', diff --git a/frontend/components/example/ImageList.vue b/frontend/components/example/ImageList.vue index 59ebe1df..dc88ea4a 100644 --- a/frontend/components/example/ImageList.vue +++ b/frontend/components/example/ImageList.vue @@ -98,6 +98,11 @@ export default Vue.extend({ computed: { headers() { return [ + { + text: 'ID', + value: 'id', + sortable: false + }, { text: 'Image', value: 'url',