We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f6d1b1 commit b3a8e3cCopy full SHA for b3a8e3c
1 file changed
client/src/components/tables/LayerViewer.vue
@@ -23,7 +23,7 @@ const { document, job } = defineProps<{ document?: DocumentMetadata; job?: Job }
23
const name = computed(() => (document ? document.name : job?.tagger.id))
24
const summary = computed(() => (document ? document.summary : job.summary))
25
const annotations = computed(() => Object.keys(summary.value.annotations))
26
-const columns = computed(() => annotations.value.map((i) => ({ key: i, label: i })))
+const columns = computed(() => annotations.value.map((i) => ({ key: i, label: i, noSort: true })))
27
const terms = computed(() => (document ? document.preview.terms : job.preview.terms))
28
const items = computed(() => terms.value.map((t) => t.annotations))
29
</script>
0 commit comments