From 97efceafce4c223aaf81ee33ab05023ad9632f7a Mon Sep 17 00:00:00 2001 From: Dannon Baker Date: Fri, 26 Apr 2024 11:25:55 -0400 Subject: [PATCH] Explicitly specify that outputFormat is a string -- this fixes tsc getting confused below when reassigning --- client/src/components/Citation/CitationsList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Citation/CitationsList.vue b/client/src/components/Citation/CitationsList.vue index 00b32419db75..7aa5b137ff97 100644 --- a/client/src/components/Citation/CitationsList.vue +++ b/client/src/components/Citation/CitationsList.vue @@ -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(() => {