aboutsummaryrefslogtreecommitdiff
path: root/src/components/chat_title
diff options
context:
space:
mode:
authorShpuld Shpuldson <shp@cock.li>2021-02-26 16:23:11 +0200
committerShpuld Shpuldson <shp@cock.li>2021-02-26 16:23:11 +0200
commit09fe160e8b9fad7a8c70e44ae894d67211b993e1 (patch)
treeaecc0746a2845d21ebb13719ebbfe94f0f4ac81b /src/components/chat_title
parent59db4582b0617f354520886f23047083ec681d54 (diff)
separate screen_name and screen_name_ui with decoded punycode
Diffstat (limited to 'src/components/chat_title')
-rw-r--r--src/components/chat_title/chat_title.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/chat_title/chat_title.js b/src/components/chat_title/chat_title.js
index e424bb1f..edfbe7a4 100644
--- a/src/components/chat_title/chat_title.js
+++ b/src/components/chat_title/chat_title.js
@@ -12,7 +12,7 @@ export default Vue.component('chat-title', {
],
computed: {
title () {
- return this.user ? this.user.screen_name : ''
+ return this.user ? this.user.screen_name_ui : ''
},
htmlTitle () {
return this.user ? this.user.name_html : ''