feat: simplify replying to badge in detailed view

This commit is contained in:
patak 2022-12-29 21:09:54 +01:00
parent 55236dac98
commit 81869df4bd
2 changed files with 8 additions and 3 deletions

View file

@ -86,7 +86,7 @@ onReactivated(() => {
<template v-for="(comment, di) of context?.descendants" :key="comment.id">
<StatusCard
:status="comment" :actions="comment.visibility !== 'direct'" context="account"
:older="context?.descendants[di + 1]" :newer="context?.descendants[di - 1]" :has-newer="di === 0"
:older="context?.descendants[di + 1]" :newer="context?.descendants[di - 1]" :has-newer="di === 0" :main="status"
/>
</template>