diff --git a/src/components/annotations/variants/VariantItem.vue b/src/components/annotations/variants/VariantItem.vue index ce817282..afe7470e 100644 --- a/src/components/annotations/variants/VariantItem.vue +++ b/src/components/annotations/variants/VariantItem.vue @@ -8,13 +8,14 @@ :data-annotation-id="annotation.id" @click="handleClick" > -
+
{{ witness ?? '-' }}
@@ -33,7 +34,7 @@ import { computed } from 'vue'; import colors from "tailwindcss/colors"; const entry = computed(() => props.annotation.body.value.entry) -const witness = computed(() => props.annotation.body.value.witness) +const witness= computed(() => props.annotation.body.value.witness) export interface Props { annotation: Annotation,