Skip to content

Commit

Permalink
Merge pull request #3609 from nextcloud/backport/3602/next
Browse files Browse the repository at this point in the history
[next] fix: Display circle share activities correctly
  • Loading branch information
dartcafe authored Jul 11, 2024
2 parents 32b495a + 5e16983 commit 6411d22
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/components/Activity/ActivityItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,15 @@ export default {
}
: `${parameters[key].name}`
break
case 'circle':
parameters[key] = {
component: SimpleLink,
props: {
href: parameters[key].link,
name: parameters[key].name,
},
}
break
case 'user':
parameters[key] = {
component: NcUserBubble,
Expand Down

0 comments on commit 6411d22

Please sign in to comment.