mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 22:13:08 +02:00
feat(client): メニューからページをリロードできるように
This commit is contained in:
parent
972b03f842
commit
7dd9f93efb
2 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -164,4 +164,11 @@ export const menuDef = reactive({
|
|||
}], ev.currentTarget ?? ev.target);
|
||||
},
|
||||
},
|
||||
reload: {
|
||||
title: 'reload',
|
||||
icon: 'fas fa-refresh',
|
||||
action: (ev) => {
|
||||
location.reload();
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue