diff options
| author | Roger Braun <roger@rogerbraun.net> | 2016-11-30 23:32:22 +0100 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2016-11-30 23:32:22 +0100 |
| commit | fcccb9df68f0c27890a431a132a2e3e59f1ba80d (patch) | |
| tree | 3f4c94595599f511f96cc59de797a304dd91fcd6 /src/components/status/status.vue | |
| parent | 83a376a25460f029c2f49ebca5509a9add7cdb44 (diff) | |
Add basic user profiles.
Diffstat (limited to 'src/components/status/status.vue')
| -rw-r--r-- | src/components/status/status.vue | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 1e824fbe..58e808b3 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -18,8 +18,10 @@ <div class="user-content"> <h4 class="media-heading"> {{status.user.name}} - <small><a :href="status.user.statusnet_profile_url">{{status.user.screen_name}}</a></small> - <small v-if="status.in_reply_to_screen_name"> > <a :href="status.in_reply_to_profileurl">{{status.in_reply_to_screen_name}}</a></small> + <small><router-link :to="{ name: 'user-profile', params: { id: status.user.id } }">{{status.user.screen_name}}</router-link></small> + <small v-if="status.in_reply_to_screen_name"> > + <a :href="status.in_reply_to_profileurl">{{status.in_reply_to_screen_name}}</a> + </small> - <small> <router-link :to="{ name: 'conversation', params: { id: status.id } }"> |
