diff --git a/webui/src/lib/components/Inspect.svelte b/webui/src/lib/components/Inspect.svelte index bd71b35..99069b8 100644 --- a/webui/src/lib/components/Inspect.svelte +++ b/webui/src/lib/components/Inspect.svelte @@ -192,7 +192,7 @@ const allAttributes = ( await Promise.all( ($entity?.attr[`~${ATTR_OF}`] ?? []).map(async (e) => { - return { address: e.entity, components: await api.addressToComponents(e.entity) }; + return { address: e.address, components: await api.addressToComponents(e.entity) }; }) ) )