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 <div
class="conversation-body" class="conversation-body"
:class="{ 'panel-body': isExpanded }" :class="{ 'panel-body': isExpanded }"
> >
<div <div
v-if="isTreeView" v-if="isTreeView"
class="thread-body" class="thread-body"

View File

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

View File

@ -77,7 +77,10 @@
:label="$t('user_card.followees')" :label="$t('user_card.followees')"
:disabled="!user.friends_count" :disabled="!user.friends_count"
> >
<FriendList :user-id="userId" :non-interactive="true"> <FriendList
:user-id="userId"
:non-interactive="true"
>
<template #item="{item}"> <template #item="{item}">
<FollowCard :user="item" /> <FollowCard :user="item" />
</template> </template>
@ -89,7 +92,10 @@
:label="$t('user_card.followers')" :label="$t('user_card.followers')"
:disabled="!user.followers_count" :disabled="!user.followers_count"
> >
<FollowerList :user-id="userId" :non-interactive="true"> <FollowerList
:user-id="userId"
:non-interactive="true"
>
<template #item="{item}"> <template #item="{item}">
<FollowCard <FollowCard
:user="item" :user="item"