We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9947682 commit 6cb2ed6Copy full SHA for 6cb2ed6
frontend/src/modules/member/components/member-identities.vue
@@ -17,7 +17,7 @@
17
:tooltip-label="platformContent(platform).tooltipLabel"
18
:as-link="platformContent(platform).asLink"
19
:show-handles-badge="true"
20
- :backup-url="props.member.attributes.url[platform]"
+ :backup-url="props.member.attributes.url?.[platform]"
21
/>
22
</div>
23
@@ -54,7 +54,7 @@ const platformContent = (platform) => {
54
};
55
56
const hasSocialIdentities = computed(
57
- () => Object.keys(props.username).some((k) => !!props.username[k].length),
+ () => Object.values(props.username).some((k) => k.length > 0),
58
);
59
</script>
60
0 commit comments