aboutsummaryrefslogtreecommitdiff
path: root/src/components/status/status.js
diff options
context:
space:
mode:
authorShpuld Shpludson <shp@cock.li>2021-03-01 18:15:46 +0000
committerShpuld Shpludson <shp@cock.li>2021-03-01 18:15:46 +0000
commitc3fcbbd918ddef4e3f574a464fd10f4899bb2dce (patch)
tree695ccbd352c82cb0f08fc78ff85bf23888561a8e /src/components/status/status.js
parent320418d524a33c20d7d769c8d67a25be81f251ec (diff)
parent0ac34b3014a1499ef5f3de7d3c321119dd10ab26 (diff)
Merge branch 'rc/2.3.0' into 'master'
2.3.0 to MASTER See merge request pleroma/pleroma-fe!1366
Diffstat (limited to 'src/components/status/status.js')
-rw-r--r--src/components/status/status.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index 2bf93a9e..470c01f1 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -136,7 +136,7 @@ const Status = {
}
},
retweet () { return !!this.statusoid.retweeted_status },
- retweeter () { return this.statusoid.user.name || this.statusoid.user.screen_name },
+ retweeter () { return this.statusoid.user.name || this.statusoid.user.screen_name_ui },
retweeterHtml () { return this.statusoid.user.name_html },
retweeterProfileLink () { return this.generateUserProfileLink(this.statusoid.user.id, this.statusoid.user.screen_name) },
status () {
@@ -216,7 +216,7 @@ const Status = {
return this.status.in_reply_to_screen_name
} else {
const user = this.$store.getters.findUser(this.status.in_reply_to_user_id)
- return user && user.screen_name
+ return user && user.screen_name_ui
}
},
replySubject () {