summaryrefslogtreecommitdiffstats
path: root/src/components/TimelineAvatar.vue
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-09-12 13:43:13 +0200
committerCarl Schwan <carl@carlschwan.eu>2022-09-12 13:43:13 +0200
commitee1b2945bb10cf56f33a9ae17126808a18d9e561 (patch)
tree0c4434ba88a7ba963cefe557f1b7ce1981226614 /src/components/TimelineAvatar.vue
parenta2fca565a114236cf2008fe233a5cd5289e2c7df (diff)
More stuff to commitdb-rewrite
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
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>