Better alt value

This commit is contained in:
syuilo 2018-11-05 19:33:28 +09:00
parent b82cb283cd
commit 78c82f3bc1

View File

@ -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 {