diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/conversation/conversation.vue | 2 | ||||
| -rw-r--r-- | src/components/poll/poll.vue | 2 | ||||
| -rw-r--r-- | src/components/user_profile/user_profile.vue | 10 |
3 files changed, 10 insertions, 4 deletions
diff --git a/src/components/conversation/conversation.vue b/src/components/conversation/conversation.vue index 3d2fed54..e13bd97b 100644 --- a/src/components/conversation/conversation.vue +++ b/src/components/conversation/conversation.vue @@ -31,7 +31,7 @@ <div class="conversation-body" :class="{ 'panel-body': isExpanded }" - > + > <div v-if="isTreeView" class="thread-body" diff --git a/src/components/poll/poll.vue b/src/components/poll/poll.vue index 5c743c08..ac856bf0 100644 --- a/src/components/poll/poll.vue +++ b/src/components/poll/poll.vue @@ -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 diff --git a/src/components/user_profile/user_profile.vue b/src/components/user_profile/user_profile.vue index 514776ca..0ade78cd 100644 --- a/src/components/user_profile/user_profile.vue +++ b/src/components/user_profile/user_profile.vue @@ -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" |
