summaryrefslogtreecommitdiff
path: root/src/client/app/common
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-11-05 19:33:28 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-11-05 19:33:28 +0900
commit3fe934ee62d9d80b48918bae8c5ac248b385005d (patch)
tree5cb199aca99e32acaaa85757ef67ba3beb92134e /src/client/app/common
parentClean up (diff)
downloadmisskey-3fe934ee62d9d80b48918bae8c5ac248b385005d.tar.gz
misskey-3fe934ee62d9d80b48918bae8c5ac248b385005d.tar.bz2
misskey-3fe934ee62d9d80b48918bae8c5ac248b385005d.zip
Better alt value
Diffstat (limited to 'src/client/app/common')
-rw-r--r--src/client/app/common/views/components/emoji.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/emoji.vue b/src/client/app/common/views/components/emoji.vue
index a02d7b3f26..106abecc77 100644
--- a/src/client/app/common/views/components/emoji.vue
+++ b/src/client/app/common/views/components/emoji.vue
@@ -35,7 +35,7 @@ export default Vue.extend({
computed: {
alt(): string {
- return this.customEmoji ? this.customEmoji.name : this.char;
+ return this.customEmoji ? `:${this.customEmoji.name}:` : this.char;
},
useOsDefaultEmojis(): boolean {