summaryrefslogtreecommitdiff
path: root/packages/frontend/src/router.ts
diff options
context:
space:
mode:
authorおさむのひと <46447427+samunohito@users.noreply.github.com>2023-12-14 14:11:20 +0900
committerGitHub <noreply@github.com>2023-12-14 14:11:20 +0900
commita92795d90f9e55c7b7726725dceea979fd8940a3 (patch)
tree48a0b7e34775e0ca796cdc702c5ff153a98f43ee /packages/frontend/src/router.ts
parent2023.12.0-beta.4 (diff)
downloadmisskey-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/router.ts')
-rw-r--r--packages/frontend/src/router.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/router.ts b/packages/frontend/src/router.ts
index b81811d2e7..a7a53e97e6 100644
--- a/packages/frontend/src/router.ts
+++ b/packages/frontend/src/router.ts
@@ -63,9 +63,9 @@ export const routes = [{
name: 'privacy',
component: page(() => import('./pages/settings/privacy.vue')),
}, {
- path: '/reaction',
- name: 'reaction',
- component: page(() => import('./pages/settings/reaction.vue')),
+ path: '/emoji-picker',
+ name: 'emojiPicker',
+ component: page(() => import('./pages/settings/emoji-picker.vue')),
}, {
path: '/drive',
name: 'drive',