mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-07 01:19:57 +00:00
feat: use <time>
element
This commit is contained in:
parent
c8c4972693
commit
ae2ce85bcc
2 changed files with 3 additions and 3 deletions
|
@ -17,6 +17,6 @@ const buildTimeAgo = useTimeAgo(buildTime)
|
|||
</div>
|
||||
<a cursor-pointer hover:underline @click="openPreviewHelp">Show intro</a>
|
||||
<div>A Mastodon client made with 💛</div>
|
||||
<div>Built <span :title="buildTime">{{ buildTimeAgo }}</span> · <a href="https://github.com/elk-zone/elk" target="_blank">GitHub</a></div>
|
||||
<div>Built <time :datetime="buildTime" :title="buildTime">{{ buildTimeAgo }}</time> · <a href="https://github.com/elk-zone/elk" target="_blank">GitHub</a></div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
@ -83,9 +83,9 @@ const timeago = useTimeAgo(() => status.createdAt, {
|
|||
<StatusAccountDetails :account="status.account" />
|
||||
<div flex-auto />
|
||||
<CommonTooltip :content="createdAt">
|
||||
<div text-sm op50 hover:underline :title="status.createdAt">
|
||||
<time text-sm op50 hover:underline :title="status.createdAt" :datetime="status.createdAt">
|
||||
{{ timeago }}
|
||||
</div>
|
||||
</time>
|
||||
</CommonTooltip>
|
||||
</div>
|
||||
<StatusReplyingTo v-if="status.inReplyToAccountId" :status="status" pt1 />
|
||||
|
|
Loading…
Reference in a new issue