This commit is contained in:
Henry Jameson 2024-03-04 21:40:35 +02:00
parent 8d99e2138a
commit b10458e3a3
3 changed files with 10 additions and 4 deletions

View File

@ -31,7 +31,7 @@
<div
class="conversation-body"
:class="{ 'panel-body': isExpanded }"
>
>
<div
v-if="isTreeView"
class="thread-body"

View File

@ -37,8 +37,8 @@
:role="poll.multiple ? 'checkbox' : 'radio'"
:aria-labelledby="`option-vote-${randomSeed}-${index}`"
:aria-checked="choices[index]"
@click="activateOption(index)"
class="input unstyled"
@click="activateOption(index)"
>
<!-- TODO: USE CHECKBOX -->
<input

View File

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