Merge branch 'fix/renote-time' into 'develop'

fix: incorrect renote time

Co-authored-by: Lhcfl <Lhcfl@outlook.com>

See merge request firefish/firefish!10798
This commit is contained in:
naskya 2024-05-09 09:52:07 +00:00
commit 075d326d7b
1 changed files with 5 additions and 1 deletions

View File

@ -123,7 +123,11 @@
v-if="isMyNote"
:class="icon('ph-dots-three-outline dropdownIcon')"
></i>
<MkTime :time="note.createdAt" />
<MkTime
v-if="(renotesSliced && renotesSliced.length > 0)"
:time="renotesSliced[0].createdAt"
/>
<MkTime v-else :time="note.createdAt" />
</button>
<MkVisibility :note="note" />
</div>