diff options
| author | Roger Braun <roger@rogerbraun.net> | 2016-11-07 16:42:29 +0100 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2016-11-07 16:42:29 +0100 |
| commit | 66a936ea5088462aa02708b0deca1f77728153be (patch) | |
| tree | 7ac4377b0d69f46a57fbbc463771ec476e69c333 | |
| parent | f529c36a9c67d305926c3b110ac9c9b6e0899dcf (diff) | |
Add user links.
| -rw-r--r-- | src/components/status/status.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 1c5dc458..8f3de3df 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -10,15 +10,15 @@ </div> <div class="media status container" ng-class="{compact: compact, notify: notify}"> <div class="media-left"> - <a href="#"> + <a :href="status.user.statusnet_profile_url"> <img class='avatar' :src="status.user.profile_image_url_original"> </a> </div> <div class="media-body"> <h4 class="media-heading"> <strong>{{status.user.name}}</strong> - <small>{{status.user.screen_name}}</small> - <small v-if="status.in_reply_to_screen_name"> > {{status.in_reply_to_screen_name}}</small> + <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>{{status.created_at_parsed}}</small> </h4> |
