diff options
| -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> |
