Merge pull request #890 from h3poteto/iss-862

closes #862 Add detail link on timestamp in toot
This commit is contained in:
AkiraFukushima 2019-04-22 22:19:29 +09:00 committed by GitHub
commit 40b5b05157
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

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;
}
}