diff --git a/CHANGELOG.md b/CHANGELOG.md index f9ce55c12..e8511132b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,11 @@ npm i -g ts-node npm run migrate ``` +11.20.3 (2019/06/10) +-------------------- +### 🐛Fixes +* 絵文字サジェストが動作しなくなっていた問題を修正 + 11.20.2 (2019/06/10) -------------------- ### 🐛Fixes diff --git a/package.json b/package.json index bc1ee7beb..b779b4ec9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "misskey", "author": "syuilo ", - "version": "11.20.2", + "version": "11.20.3", "codename": "daybreak", "repository": { "type": "git", diff --git a/src/client/app/common/views/components/autocomplete.vue b/src/client/app/common/views/components/autocomplete.vue index 1aea2f1cb..b66da49d7 100644 --- a/src/client/app/common/views/components/autocomplete.vue +++ b/src/client/app/common/views/components/autocomplete.vue @@ -19,7 +19,7 @@ {{ emoji.emoji }} - {{ beforeQ }}{{ q }}{{ afterQ }} + ({{ emoji.aliasOf }}) @@ -89,14 +89,6 @@ export default Vue.extend({ }, computed: { - beforeQ(): string { - return this.emoji.name.split(this.q)[0]; - }, - - afterQ(): string { - return this.emoji.name.split(this.q)[1] || ''; - }, - items(): HTMLCollection { return (this.$refs.suggests as Element).children; },