From 54fa83f1c5e23a5a5df25d9fd08540127a979331 Mon Sep 17 00:00:00 2001 From: kakkokari-gtyih Date: Thu, 9 Nov 2023 21:29:19 +0900 Subject: [PATCH] =?UTF-8?q?(add)=20navbar:=20=E4=BA=88=E7=B4=84=E6=8A=95?= =?UTF-8?q?=E7=A8=BF=E4=B8=80=E8=A6=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/navbar.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/frontend/src/navbar.ts b/packages/frontend/src/navbar.ts index f0ed773f82..99a02671eb 100644 --- a/packages/frontend/src/navbar.ts +++ b/packages/frontend/src/navbar.ts @@ -171,4 +171,11 @@ export const navbarItemDef = reactive({ show: computed(() => $i != null), to: `/@${$i?.username}`, }, + scheduledNotes: { + title: i18n.ts._schedulePost.list, + icon: 'ti ti-calendar-event', + action: (ev) => { + os.listSchedulePost(); + }, + }, });