diff --git a/frontend/src/components/common/CodeSource.vue b/frontend/src/components/common/CodeSource.vue index a1930ef3..879a49d0 100644 --- a/frontend/src/components/common/CodeSource.vue +++ b/frontend/src/components/common/CodeSource.vue @@ -2,7 +2,7 @@
-

+				

 			
@@ -37,5 +37,5 @@ const { code, lang } = defineProps<{ }>() const showSource = ref(false) -const source = computed(() => code.toString()) +const source = computed(() => JSON.stringify(code, null, "\t"))