Allow for template inside Timeago component that shows unless the time string is 'just now'

This commit is contained in:
Sean King 2022-08-02 23:19:25 -06:00
commit 04e62df377
No known key found for this signature in database
GPG key ID: 510C52BACD6E7257
2 changed files with 25 additions and 19 deletions

View file

@ -336,16 +336,12 @@
tag="span"
>
<template #time>
<i18n-t
keypath="time.in_past"
tag="span"
>
<Timeago
:time="status.edited_at"
:auto-update="60"
:long-format="true"
/>
</i18n-t>
<Timeago
template-key="time.in_past"
:time="status.edited_at"
:auto-update="60"
:long-format="true"
/>
</template>
</i18n-t>
</div>