logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: b10458e3a31fc93dbffd0473e41d9eaf17c2a0df
parent 8d99e2138a97a661d9d62e4d6d36faa818511a19
Author: Henry Jameson <me@hjkos.com>
Date:   Mon,  4 Mar 2024 21:40:35 +0200

lint

Diffstat:

Msrc/components/conversation/conversation.vue2+-
Msrc/components/poll/poll.vue2+-
Msrc/components/user_profile/user_profile.vue10++++++++--
3 files changed, 10 insertions(+), 4 deletions(-)

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