diff --git a/src/routes/verify/components/DetailedInfo/ProcessSection/AISubSection.svelte b/src/routes/verify/components/DetailedInfo/ProcessSection/AISubSection.svelte index dd69ea15e..5fb4835c8 100644 --- a/src/routes/verify/components/DetailedInfo/ProcessSection/AISubSection.svelte +++ b/src/routes/verify/components/DetailedInfo/ProcessSection/AISubSection.svelte @@ -17,7 +17,14 @@ {#each softwareAgents as softwareAgent} - {softwareAgent} + {#if typeof softwareAgent === 'string'} + {softwareAgent} + {:else if typeof softwareAgent === 'object' && softwareAgent !== null} + {#each Object.entries(softwareAgent) as [key, value]} +
{key}: {value}
+ {/each} + {/if} +
{/each}