Skip to content

Commit 394aa05

Browse files
committed
Fix indentation
1 parent d70d567 commit 394aa05

File tree

1 file changed

+2
-6
lines changed
  • src/routes/projects/[projectId]/datasets/[datasetId]

1 file changed

+2
-6
lines changed

src/routes/projects/[projectId]/datasets/[datasetId]/+page.svelte

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -287,13 +287,9 @@
287287
</li>
288288
<li class="list-group-item text-break">
289289
{#if typeof value == "object" && Object.keys(value).length > 1}
290-
<code>
291-
<pre>{JSON.stringify(value, null, 2)}</pre>
292-
</code>
290+
<code><pre>{JSON.stringify(value, null, 2)}</pre></code>
293291
{:else}
294-
<code>
295-
{value}
296-
</code>
292+
<code>{value}</code>
297293
{/if}
298294
</li>
299295
{/each}

0 commit comments

Comments
 (0)