fix(webui): Inspect correctly detects un/typed entries of a group

This commit is contained in:
Tomáš Mládek 2024-04-12 15:06:55 +02:00
parent d539bd9f22
commit 405f9e9886

View file

@ -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) };
})
)
)