mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
Explicitly specify that outputFormat is a string -- this fixes tsc getting confused below when reassigning
This commit is contained in:
@@ -29,7 +29,7 @@ const { config } = useConfig(true);
|
||||
|
||||
const emit = defineEmits(["rendered", "show", "shown", "hide", "hidden"]);
|
||||
|
||||
const outputFormat = ref(outputFormats.CITATION);
|
||||
const outputFormat = ref<string>(outputFormats.CITATION);
|
||||
const citations = ref<Citation[]>([]);
|
||||
|
||||
onUpdated(() => {
|
||||
|
||||
Reference in New Issue
Block a user