From 802739a2df8f87938e1b751f9fa6555aa3cc7c85 Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 10 Jun 2019 23:09:36 +0900 Subject: [PATCH 1/2] Fix bug --- .../app/common/views/components/autocomplete.vue | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) 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; }, From 801f9027aa95fa261db552a667b900e81ae1b5fc Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 10 Jun 2019 23:11:04 +0900 Subject: [PATCH 2/2] 11.20.3 --- CHANGELOG.md | 5 +++++ package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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",