diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-11-05 19:33:28 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-11-05 19:33:28 +0900 |
| commit | 3fe934ee62d9d80b48918bae8c5ac248b385005d (patch) | |
| tree | 5cb199aca99e32acaaa85757ef67ba3beb92134e /src/client/app/common | |
| parent | Clean up (diff) | |
| download | misskey-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.vue | 2 |
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 { |