Skip to content

Commit 819e846

Browse files
authored
Fix rendering of custom platforms in org list (#1482)
1 parent 2262f63 commit 819e846

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

frontend/src/modules/organization/components/organization-identities.vue

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@
1212
:platform="platform"
1313
:username-handles="getHandlesByPlatform(platform)"
1414
:links="getUrlsByPlatform(platform)"
15-
:track-event-name="getPlatformDetails(platform).trackEventName"
16-
:track-event-channel="getPlatformDetails(platform).trackEventChannel"
17-
:tooltip-label="getPlatformDetails(platform).tooltipLabel"
15+
:track-event-name="getPlatformDetails(platform)?.trackEventName"
16+
:track-event-channel="getPlatformDetails(platform)?.trackEventChannel"
17+
:tooltip-label="getPlatformDetails(platform)?.tooltipLabel"
1818
:show-handles-badge="true"
1919
:as-link="true"
20+
custom-platform-icon-class="ri-community-fill"
2021
/>
2122
</div>
2223

0 commit comments

Comments
 (0)