Lint
This commit is contained in:
parent
48ee11fea3
commit
d3e251665f
|
@ -30,34 +30,34 @@
|
||||||
>{{ reaction.name }}</span>
|
>{{ reaction.name }}</span>
|
||||||
</span>
|
</span>
|
||||||
<FALayers>
|
<FALayers>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
v-if="reactedWith(reaction.name)"
|
v-if="reactedWith(reaction.name)"
|
||||||
class="active-marker"
|
class="active-marker"
|
||||||
transform="shrink-6 up-9"
|
transform="shrink-6 up-9"
|
||||||
icon="check"
|
icon="check"
|
||||||
/>
|
/>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
v-if="!reactedWith(reaction.name)"
|
v-if="!reactedWith(reaction.name)"
|
||||||
class="focus-marker"
|
class="focus-marker"
|
||||||
transform="shrink-6 up-9"
|
transform="shrink-6 up-9"
|
||||||
icon="plus"
|
icon="plus"
|
||||||
/>
|
/>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
v-else
|
v-else
|
||||||
class="focus-marker"
|
class="focus-marker"
|
||||||
transform="shrink-6 up-9"
|
transform="shrink-6 up-9"
|
||||||
icon="minus"
|
icon="minus"
|
||||||
/>
|
/>
|
||||||
</FALayers>
|
</FALayers>
|
||||||
</component>
|
</component>
|
||||||
<UserListPopover
|
<UserListPopover
|
||||||
:users="accountsForEmoji[reaction.name]"
|
:users="accountsForEmoji[reaction.name]"
|
||||||
class="emoji-reaction-popover"
|
class="emoji-reaction-popover"
|
||||||
@show="fetchEmojiReactionsByIfMissing()"
|
:trigger-attrs="{ class: ['btn', 'button-default', 'emoji-reaction-count-button', { '-picked-reaction': reactedWith(reaction.name) }] }"
|
||||||
:trigger-attrs="{ class: ['btn', 'button-default', 'emoji-reaction-count-button', { '-picked-reaction': reactedWith(reaction.name) }] }"
|
@show="fetchEmojiReactionsByIfMissing()"
|
||||||
>
|
>
|
||||||
<span class="emoji-reaction-counts">{{ reaction.count }}</span>
|
<span class="emoji-reaction-counts">{{ reaction.count }}</span>
|
||||||
</UserListPopover>
|
</UserListPopover>
|
||||||
</span>
|
</span>
|
||||||
<a
|
<a
|
||||||
v-if="tooManyReactions"
|
v-if="tooManyReactions"
|
||||||
|
|
Loading…
Reference in New Issue