From bf781707c5a2e2fb73c889a647ed200d010a00fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=93=E3=81=91=E3=81=A3=E3=81=A1?= Date: Sat, 10 Sep 2022 19:40:09 +0900 Subject: [PATCH] fix: old deck ui sidebar --- .../client/src/ui/_common_old/sidebar.vue | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/packages/client/src/ui/_common_old/sidebar.vue b/packages/client/src/ui/_common_old/sidebar.vue index e155098bb..3fbc8c1d5 100644 --- a/packages/client/src/ui/_common_old/sidebar.vue +++ b/packages/client/src/ui/_common_old/sidebar.vue @@ -110,6 +110,36 @@ function openInstanceMenu(ev: MouseEvent) { text: i18n.ts.federation, icon: 'fas fa-globe', to: '/about#federation', + }, null, { + type: 'parent', + text: i18n.ts.help, + icon: 'fas fa-question-circle', + children: [{ + type: 'link', + to: '/mfm-cheat-sheet', + text: i18n.ts._mfm.cheatSheet, + icon: 'fas fa-code', + }, { + type: 'link', + to: '/scratchpad', + text: i18n.ts.scratchpad, + icon: 'fas fa-terminal', + }, { + type: 'link', + to: '/api-console', + text: 'API Console', + icon: 'fas fa-terminal', + }, null, { + text: i18n.ts.document, + icon: 'fas fa-question-circle', + action: () => { + window.open('https://misskey-hub.net/help.html', '_blank'); + }, + }], + }, { + type: 'link', + text: i18n.ts.aboutMisskey, + to: '/about-misskey', }], ev.currentTarget ?? ev.target, { align: 'left', });