lint
This commit is contained in:
parent
8d99e2138a
commit
b10458e3a3
@ -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"
|
||||||
|
@ -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
|
||||||
|
@ -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"
|
||||||
|
Loading…
Reference in New Issue
Block a user