diff options
| author | Shpuld Shpludson <shp@cock.li> | 2020-07-20 14:37:21 +0000 |
|---|---|---|
| committer | Shpuld Shpludson <shp@cock.li> | 2020-07-20 14:37:21 +0000 |
| commit | 4528c5c9828f7a467508a51ff021f60a68d90c6b (patch) | |
| tree | 39b83a29da83569497788c8073336053d5cece2f | |
| parent | a06ab08f96ba25a5163dd3c8e7e0fec75023c302 (diff) | |
| parent | 717adf22cc38894285fcb91be5b59c5f10e8d901 (diff) | |
Merge branch 'feat/more-title-attributes-in-status-header' into 'develop'
Add title attributes to more things in status header
See merge request pleroma/pleroma-fe!1195
| -rw-r--r-- | src/components/status/status.vue | 13 | ||||
| -rw-r--r-- | src/components/user_card/user_card.vue | 1 |
2 files changed, 12 insertions, 2 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 1ecff49c..22874829 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -72,7 +72,10 @@ :user="statusoid.user" /> <div class="media-body faint"> - <span class="user-name"> + <span + class="user-name" + :title="retweeter" + > <router-link v-if="retweeterHtml" :to="retweeterProfileLink" @@ -129,16 +132,19 @@ <h4 v-if="status.user.name_html" class="user-name" + :title="status.user.name" v-html="status.user.name_html" /> <h4 v-else class="user-name" + :title="status.user.name" > {{ status.user.name }} </h4> <router-link class="account-name" + :title="status.user.screen_name" :to="userProfileLink" > {{ status.user.screen_name }} @@ -227,7 +233,10 @@ > <span class="reply-to-text">{{ $t('status.reply_to') }}</span> </span> - <router-link :to="replyProfileLink"> + <router-link + :title="replyToName" + :to="replyProfileLink" + > {{ replyToName }} </router-link> <span diff --git a/src/components/user_card/user_card.vue b/src/components/user_card/user_card.vue index 9529d7f6..75db5db1 100644 --- a/src/components/user_card/user_card.vue +++ b/src/components/user_card/user_card.vue @@ -66,6 +66,7 @@ <div class="bottom-line"> <router-link class="user-screen-name" + :title="user.screen_name" :to="userProfileLink(user)" > @{{ user.screen_name }} |
