This commit is contained in:
syuilo
2017-06-07 13:41:27 +09:00
parent 39aa49884c
commit 9d49f71b48
5 changed files with 21 additions and 21 deletions

View File

@@ -2,7 +2,7 @@
<virtual if={ notification.type == 'reaction' }>
<img class="avatar" src={ notification.user.avatar_url + '?thumbnail&size=64' } alt="avatar"/>
<div class="text">
<p><mk-reaction-icon reaction={ notification.reaction }></mk-reaction-icon>{ notification.user.name }</p>
<p><mk-reaction-icon reaction={ notification.reaction }/>{ notification.user.name }</p>
<p class="post-ref">{ getPostSummary(notification.post) }</p>
</div>
</virtual>

View File

@@ -6,7 +6,7 @@
</a>
<div class="text">
<p>
<mk-reaction-icon reaction={ notification.reaction }></mk-reaction-icon>
<mk-reaction-icon reaction={ notification.reaction }/>
<a href={ '/' + notification.user.username }>{ notification.user.name }</a>
</p>
<a class="post-ref" href={ '/' + notification.post.user.username + '/' + notification.post.id }>{ getPostSummary(notification.post) }</a>