diff options
| author | Henry Jameson <me@hjkos.com> | 2024-03-04 21:40:35 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2024-03-04 21:40:35 +0200 |
| commit | b10458e3a31fc93dbffd0473e41d9eaf17c2a0df (patch) | |
| tree | b379f6c4321a6e342577958211801f805fe2486c /src/components/user_profile | |
| parent | 8d99e2138a97a661d9d62e4d6d36faa818511a19 (diff) | |
lint
Diffstat (limited to 'src/components/user_profile')
| -rw-r--r-- | src/components/user_profile/user_profile.vue | 10 |
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" |
