Add link to conversation in status.

This commit is contained in:
Roger Braun 2016-11-24 18:19:01 +01:00
parent e245074ef7
commit 2341a3692a
1 changed files with 5 additions and 1 deletions

View File

@ -20,7 +20,11 @@
<small><a :href="status.user.statusnet_profile_url">{{status.user.screen_name}}</a></small>
<small v-if="status.in_reply_to_screen_name"> &gt; <a :href="status.in_reply_to_profileurl">{{status.in_reply_to_screen_name}}</a></small>
-
<small>{{status.created_at_parsed}}</small>
<small>
<router-link :to="{ name: 'conversation', params: { id: status.id } }">
{{status.created_at_parsed}}
</router-link>
</small>
</h4>
<div class="status-content" v-html="status.statusnet_html"></div>