summaryrefslogtreecommitdiffstats
path: root/src/components/TimelineAvatar.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/TimelineAvatar.vue')
-rw-r--r--src/components/TimelineAvatar.vue10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/TimelineAvatar.vue b/src/components/TimelineAvatar.vue
index 70938266..9a730175 100644
--- a/src/components/TimelineAvatar.vue
+++ b/src/components/TimelineAvatar.vue
@@ -19,13 +19,13 @@ import Avatar from '@nextcloud/vue/dist/Components/Avatar'
export default {
name: 'TimelineAvatar',
components: {
- Avatar,
+ Avatar
},
props: {
item: {
type: Object,
- default: () => {},
- },
+ default: () => {}
+ }
},
computed: {
userTest() {
@@ -33,8 +33,8 @@ export default {
},
avatarUrl() {
return OC.generateUrl('/apps/social/api/v1/global/actor/avatar?id=' + this.item.attributedTo)
- },
- },
+ }
+ }
}
</script>