diff --git a/components/actors/bio.vue b/components/actors/bio.vue index 052635c..5ba1dcb 100644 --- a/components/actors/bio.vue +++ b/components/actors/bio.vue @@ -244,25 +244,25 @@

{{ description.text }} @@ -325,6 +325,13 @@ const showExpand = [ 'waist', 'weight', ].some((attribute) => !!props.actor[attribute]); + +const descriptions = Object.values(Object.fromEntries(props.actor.profiles + .filter((profile) => !!profile.description) + .map((profile) => [profile.descriptionHash, { + text: profile.description, + entity: profile.entity, + }])));