We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 394aa05 commit 5a8bcbfCopy full SHA for 5a8bcbf
src/routes/projects/[projectId]/datasets/[datasetId]/+page.svelte
@@ -286,7 +286,7 @@
286
<span class="text-capitalize">{key}</span>
287
</li>
288
<li class="list-group-item text-break">
289
- {#if typeof value == "object" && Object.keys(value).length > 1}
+ {#if typeof value == "object" && value !== null && Object.keys(value).length > 1}
290
<code><pre>{JSON.stringify(value, null, 2)}</pre></code>
291
{:else}
292
<code>{value}</code>
0 commit comments