Skip to content

Commit

Permalink
Merge pull request #3602 from nextcloud/fix/activity-circle-display
Browse files Browse the repository at this point in the history
fix: Display circle share activities correctly
  • Loading branch information
hamza221 authored Jul 10, 2024
2 parents d5e3209 + 3d6013d commit 953bb32
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/js/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 953bb32

Please sign in to comment.