1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2025-02-06 20:33:33 +01:00

refs #862 Add detail link on timestamp in toot

This commit is contained in:
AkiraFukushima 2019-04-20 12:59:39 +09:00
parent f819d49d5b
commit c8cf28a55b

View File

@ -27,7 +27,7 @@
<span class="acct">{{ accountName(originalMessage.account) }}</span>
</div>
<div class="timestamp">
<time :datetime="originalMessage.created_at" :title="readableTimestamp">
<time :datetime="originalMessage.created_at" :title="readableTimestamp" @click="openDetail(message)">
{{ timestamp }}
</time>
</div>
@ -570,6 +570,7 @@ export default {
text-align: right;
color: #909399;
float: right;
cursor: pointer;
}
}