diff options
| author | Roger Braun <roger@rogerbraun.net> | 2016-12-01 18:05:04 +0100 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2016-12-01 18:05:04 +0100 |
| commit | 0df3ca47a49be71c813c558f3a98286a6bc0c74b (patch) | |
| tree | 8401c253a48bc72b3d3b0981b1a9cc1143534549 | |
| parent | fcccb9df68f0c27890a431a132a2e3e59f1ba80d (diff) | |
Add link to replied to users in status.
| -rw-r--r-- | src/components/status/status.vue | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 58e808b3..86632876 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -20,7 +20,9 @@ {{status.user.name}} <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> + <router-link :to="{ name: 'user-profile', params: { id: status.in_reply_to_user_id } }"> + {{status.in_reply_to_screen_name}} + </router-link> </small> - <small> |
