diff options
| author | Henry Jameson <me@hjkos.com> | 2024-02-29 19:54:25 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2024-02-29 19:54:25 +0200 |
| commit | 01f6f89c7de7dee3c91d2850490981d73a3c0465 (patch) | |
| tree | 5a26e2344d95c436e31cdd3c4388fda7ef40dae2 /src/components/user_profile/user_profile.vue | |
| parent | 23a8bee053c7c5cfa0daee1fe8bd46d22221bb56 (diff) | |
interactive lists & non-interactive lists
Diffstat (limited to 'src/components/user_profile/user_profile.vue')
| -rw-r--r-- | src/components/user_profile/user_profile.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/user_profile/user_profile.vue b/src/components/user_profile/user_profile.vue index 042d5221..011f32da 100644 --- a/src/components/user_profile/user_profile.vue +++ b/src/components/user_profile/user_profile.vue @@ -75,7 +75,7 @@ :label="$t('user_card.followees')" :disabled="!user.friends_count" > - <FriendList :user-id="userId"> + <FriendList :user-id="userId" :non-interactive="true"> <template #item="{item}"> <FollowCard :user="item" /> </template> @@ -87,7 +87,7 @@ :label="$t('user_card.followers')" :disabled="!user.followers_count" > - <FollowerList :user-id="userId"> + <FollowerList :user-id="userId" :non-interactive="true"> <template #item="{item}"> <FollowCard :user="item" |
