Merge pull request #890 from h3poteto/iss-862
closes #862 Add detail link on timestamp in toot
This commit is contained in:
commit
40b5b05157
|
@ -27,7 +27,7 @@
|
||||||
<span class="acct">{{ accountName(originalMessage.account) }}</span>
|
<span class="acct">{{ accountName(originalMessage.account) }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="timestamp">
|
<div class="timestamp">
|
||||||
<time :datetime="originalMessage.created_at" :title="readableTimestamp">
|
<time :datetime="originalMessage.created_at" :title="readableTimestamp" @click="openDetail(message)">
|
||||||
{{ timestamp }}
|
{{ timestamp }}
|
||||||
</time>
|
</time>
|
||||||
</div>
|
</div>
|
||||||
|
@ -570,6 +570,7 @@ export default {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
color: #909399;
|
color: #909399;
|
||||||
float: right;
|
float: right;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue