This commit is contained in:
lesion
2019-07-05 23:58:47 +02:00
parent 121720b734
commit 4d2f75140c
5 changed files with 9 additions and 5 deletions

View File

@@ -45,8 +45,8 @@
a(:href='`https://${settings.mastodon_instance}/web/statuses/${event.activitypub_id}`') {{$t('common.add')}}
.card-header(v-for='comment in event.comments' :key='comment.id')
img.avatar(:src='comment.data.account.avatar')
strong {{comment.data.account.display_name}} {{comment.data.account.username}}
img.avatar(:src='comment.data.account.avatar')
strong {{comment.data.account.display_name}} @{{comment.data.account.username}}
//- a.float-right(:href='comment.data.url')
a.float-right(:href='`https://${settings.mastodon_instance}/web/statuses/${comment.data.id}`')
small {{comment.data.created_at|datetime}}
@@ -209,6 +209,9 @@ export default {
img {
max-width: 100%;
}
.invisible {
visibility: visible !important;
}
}
.avatar {