aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_profile
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2024-03-04 21:40:35 +0200
committerHenry Jameson <me@hjkos.com>2024-03-04 21:40:35 +0200
commitb10458e3a31fc93dbffd0473e41d9eaf17c2a0df (patch)
treeb379f6c4321a6e342577958211801f805fe2486c /src/components/user_profile
parent8d99e2138a97a661d9d62e4d6d36faa818511a19 (diff)
lint
Diffstat (limited to 'src/components/user_profile')
-rw-r--r--src/components/user_profile/user_profile.vue10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/components/user_profile/user_profile.vue b/src/components/user_profile/user_profile.vue
index 514776ca..0ade78cd 100644
--- a/src/components/user_profile/user_profile.vue
+++ b/src/components/user_profile/user_profile.vue
@@ -77,7 +77,10 @@
:label="$t('user_card.followees')"
:disabled="!user.friends_count"
>
- <FriendList :user-id="userId" :non-interactive="true">
+ <FriendList
+ :user-id="userId"
+ :non-interactive="true"
+ >
<template #item="{item}">
<FollowCard :user="item" />
</template>
@@ -89,7 +92,10 @@
:label="$t('user_card.followers')"
:disabled="!user.followers_count"
>
- <FollowerList :user-id="userId" :non-interactive="true">
+ <FollowerList
+ :user-id="userId"
+ :non-interactive="true"
+ >
<template #item="{item}">
<FollowCard
:user="item"