From 3fe934ee62d9d80b48918bae8c5ac248b385005d Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 5 Nov 2018 19:33:28 +0900 Subject: [PATCH] Better alt value --- src/client/app/common/views/components/emoji.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/app/common/views/components/emoji.vue b/src/client/app/common/views/components/emoji.vue index a02d7b3f2..106abecc7 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 {