From 7dd9f93efb2c8786ce66d17eacf7088d0499337f Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 5 Jul 2022 19:29:44 +0900 Subject: [PATCH] =?UTF-8?q?feat(client):=20=E3=83=A1=E3=83=8B=E3=83=A5?= =?UTF-8?q?=E3=83=BC=E3=81=8B=E3=82=89=E3=83=9A=E3=83=BC=E3=82=B8=E3=82=92?= =?UTF-8?q?=E3=83=AA=E3=83=AD=E3=83=BC=E3=83=89=E3=81=A7=E3=81=8D=E3=82=8B?= =?UTF-8?q?=E3=82=88=E3=81=86=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + packages/client/src/menu.ts | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3444a761..039a0ec08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ You should also include the user name that made the change. - Client: Poll highlights in explore page @syuilo - Client: Improve deck UI @syuilo - Client: Word mute also checks content warnings @Johann150 +- Client: メニューからページをリロードできるように @syuilo - ユーザーにモデレーションメモを残せる機能 @syuilo - Make possible to delete an account by admin @syuilo - Improve player detection in URL preview @mei23 diff --git a/packages/client/src/menu.ts b/packages/client/src/menu.ts index 677296a6f..503924e64 100644 --- a/packages/client/src/menu.ts +++ b/packages/client/src/menu.ts @@ -164,4 +164,11 @@ export const menuDef = reactive({ }], ev.currentTarget ?? ev.target); }, }, + reload: { + title: 'reload', + icon: 'fas fa-refresh', + action: (ev) => { + location.reload(); + }, + }, });