interactive lists & non-interactive lists

This commit is contained in:
Henry Jameson 2024-02-29 19:54:25 +02:00
commit 01f6f89c7d
5 changed files with 14 additions and 4 deletions

View file

@ -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"