interactive lists & non-interactive lists
This commit is contained in:
parent
23a8bee053
commit
01f6f89c7d
5 changed files with 14 additions and 4 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue