diff --git a/client/src/components/Citation/CitationsList.vue b/client/src/components/Citation/CitationsList.vue index 8668cb84e64e..7aa5b137ff97 100644 --- a/client/src/components/Citation/CitationsList.vue +++ b/client/src/components/Citation/CitationsList.vue @@ -18,7 +18,7 @@ const outputFormats = Object.freeze({ interface Props { id: string; source: string; - simple: boolean; + simple?: boolean; } const props = withDefaults(defineProps(), { @@ -29,7 +29,7 @@ const { config } = useConfig(true); const emit = defineEmits(["rendered", "show", "shown", "hide", "hidden"]); -const outputFormat = ref(outputFormats.CITATION); +const outputFormat = ref(outputFormats.CITATION); const citations = ref([]); onUpdated(() => { @@ -65,7 +65,7 @@ onMounted(async () => {
-
+