diff options
| author | おさむのひと <46447427+samunohito@users.noreply.github.com> | 2023-12-14 14:11:20 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-14 14:11:20 +0900 |
| commit | a92795d90f9e55c7b7726725dceea979fd8940a3 (patch) | |
| tree | 48a0b7e34775e0ca796cdc702c5ff153a98f43ee /packages/frontend/src/pages/settings/index.vue | |
| parent | 2023.12.0-beta.4 (diff) | |
| download | misskey-a92795d90f9e55c7b7726725dceea979fd8940a3.tar.gz misskey-a92795d90f9e55c7b7726725dceea979fd8940a3.tar.bz2 misskey-a92795d90f9e55c7b7726725dceea979fd8940a3.zip | |
feat(frontend): 絵文字ピッカーの実装 (#12617)
* 絵文字デッキの作成
* 細かい不備を修正
* fix lint
* fix
* fix CHANGELOG.md
* fix setTimeout -> nextTick
* fix https://github.com/misskey-dev/misskey/pull/12617#issuecomment-1848952862
* fix bug
* fix CHANGELOG.md
* fix CHANGELOG.md
* wip
* Update CHANGELOG.md
* Update CHANGELOG.md
* wip
---------
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
Diffstat (limited to 'packages/frontend/src/pages/settings/index.vue')
| -rw-r--r-- | packages/frontend/src/pages/settings/index.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/frontend/src/pages/settings/index.vue b/packages/frontend/src/pages/settings/index.vue index 633ee894a9..e533f4420b 100644 --- a/packages/frontend/src/pages/settings/index.vue +++ b/packages/frontend/src/pages/settings/index.vue @@ -74,9 +74,9 @@ const menuDef = computed(() => [{ active: currentPage.value?.route.name === 'privacy', }, { icon: 'ti ti-mood-happy', - text: i18n.ts.reaction, - to: '/settings/reaction', - active: currentPage.value?.route.name === 'reaction', + text: i18n.ts.emojiPicker, + to: '/settings/emoji-picker', + active: currentPage.value?.route.name === 'emojiPicker', }, { icon: 'ti ti-cloud', text: i18n.ts.drive, @@ -236,7 +236,7 @@ provideMetadataReceiver((info) => { childInfo.value = null; } else { childInfo.value = info; - INFO.value.needWideArea = info.value?.needWideArea ?? undefined; + INFO.value.needWideArea = info.value.needWideArea ?? undefined; } }); |