lint
This commit is contained in:
parent
8d99e2138a
commit
b10458e3a3
@ -31,7 +31,7 @@
|
||||
<div
|
||||
class="conversation-body"
|
||||
:class="{ 'panel-body': isExpanded }"
|
||||
>
|
||||
>
|
||||
<div
|
||||
v-if="isTreeView"
|
||||
class="thread-body"
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user