refactor conditions
This commit is contained in:
parent
644343ccda
commit
c5e391b606
1 changed files with 13 additions and 18 deletions
|
@ -205,14 +205,10 @@
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
v-if="inConversation && !isPreview"
|
v-if="inConversation && !isPreview && replies && replies.length"
|
||||||
class="replies"
|
class="replies"
|
||||||
>
|
>
|
||||||
<span
|
<span class="faint">{{ $t('status.replies_list') }}</span>
|
||||||
v-if="replies && replies.length"
|
|
||||||
class="faint"
|
|
||||||
>{{ $t('status.replies_list') }}</span>
|
|
||||||
<template v-if="replies">
|
|
||||||
<span
|
<span
|
||||||
v-for="reply in replies"
|
v-for="reply in replies"
|
||||||
:key="reply.id"
|
:key="reply.id"
|
||||||
|
@ -225,7 +221,6 @@
|
||||||
@mouseout="replyLeave()"
|
@mouseout="replyLeave()"
|
||||||
>{{ reply.name }}</a>
|
>{{ reply.name }}</a>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue