fix(webui): Inspect correctly detects un/typed entries of a group
ci/woodpecker/push/woodpecker Pipeline failed Details

feat/plugins-backend
Tomáš Mládek 2024-04-12 15:06:55 +02:00
parent 58c5329781
commit 1bd83062bb
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@
const allAttributes = ( const allAttributes = (
await Promise.all( await Promise.all(
($entity?.attr[`~${ATTR_OF}`] ?? []).map(async (e) => { ($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) };
}) })
) )
) )