Skip to content

Commit 6f091f2

Browse files
authored
fix: empty platform names showing when include collaborations toggle is off (#728)
Signed-off-by: Efren Lim <[email protected]>
1 parent bea4532 commit 6f091f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/app/components/modules/widget/components/contributors/fragments/activities-dropdown.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ SPDX-License-Identifier: MIT
4242
v-for="group in platforms"
4343
:key="group.key"
4444
>
45-
<template v-if="connected.includes(group.key)">
45+
<template v-if="connected.includes(group.key) && filterActivityTypes(group.activityTypes).length > 0">
4646
<lfx-dropdown-group-title>
4747
{{ group.label }}
4848
</lfx-dropdown-group-title>

0 commit comments

Comments
 (0)