diff options
| author | HJ <spam@hjkos.com> | 2019-01-24 18:05:09 +0000 |
|---|---|---|
| committer | HJ <spam@hjkos.com> | 2019-01-24 18:05:09 +0000 |
| commit | 8b7faa810693e85247a86d3a9fc1190afc33896b (patch) | |
| tree | c22acf93bb417421728da36368bca5d1d6c7eaf5 /src/components/status/status.vue | |
| parent | 3492ab66973616bdf0beede3c3b3f05f476c3743 (diff) | |
| parent | 416424d04838bdb174279f2494eaadb7ac7505c1 (diff) | |
Merge branch 'favorites-fixes' into 'develop'
fix reply-to tooltip being somewhat unreliable
See merge request pleroma/pleroma-fe!473
Diffstat (limited to 'src/components/status/status.vue')
| -rw-r--r-- | src/components/status/status.vue | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 4a1aef8f..5c956467 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -3,7 +3,7 @@ <template v-if="muted && !noReplyLinks"> <div class="media status container muted"> <small> - <router-link :to="userProfileLink(status.user.id, status.user.screen_name)"> + <router-link :to="userProfileLink"> {{status.user.screen_name}} </router-link> </small> @@ -38,16 +38,16 @@ <h4 class="user-name" v-if="status.user.name_html" v-html="status.user.name_html"></h4> <h4 class="user-name" v-else>{{status.user.name}}</h4> <span class="links"> - <router-link :to="userProfileLink(status.user.id, status.user.screen_name)"> + <router-link :to="userProfileLink"> {{status.user.screen_name}} </router-link> - <span v-if="status.in_reply_to_screen_name" class="faint reply-info"> + <span v-if="isReply" class="faint reply-info"> <i class="icon-right-open"></i> - <router-link :to="userProfileLink(status.in_reply_to_user_id, status.in_reply_to_screen_name)"> - {{status.in_reply_to_screen_name}} + <router-link :to="replyProfileLink"> + {{replyToName}} </router-link> </span> - <a v-if="isReply && !noReplyLinks" href="#" @click.prevent="gotoOriginal(status.in_reply_to_status_id)" :title="$t('tool_tip.reply')"> + <a v-if="isReply && !noReplyLinks" href="#" @click.prevent="gotoOriginal(status.in_reply_to_status_id)" :aria-label="$t('tool_tip.reply')"> <i class="button-icon icon-reply" @mouseenter="replyEnter(status.in_reply_to_status_id, $event)" @mouseout="replyLeave()"></i> </a> </span> |
