Skip to content
Snippets Groups Projects
Commit 3ed1eb57 authored by Shpuld Shpludson's avatar Shpuld Shpludson
Browse files

Merge branch 'hotfix-replies' into 'develop'

fix broken statuses

See merge request pleroma/pleroma-fe!632
parents c1ee7c02 6841f516
Branches
No related tags found
No related merge requests found
......@@ -82,8 +82,8 @@
</span>
</div>
<div class="replies" v-if="inConversation && !isPreview">
<span class="faint" v-if="replies.length">{{$t('status.replies_list')}}</span>
<span class="reply-link faint" v-for="reply in replies">
<span class="faint" v-if="replies && replies.length">{{$t('status.replies_list')}}</span>
<span class="reply-link faint" v-if="replies" v-for="reply in replies">
<a href="#" @click.prevent="gotoOriginal(reply.id)" @mouseenter="replyEnter(reply.id, $event)" @mouseout="replyLeave()">{{reply.name}}</a>
</span>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment