From e04915234746508f3be4c3bd81fa3accdbbcc92e Mon Sep 17 00:00:00 2001 From: Anton Date: Mon, 9 Oct 2023 20:12:39 +0200 Subject: [PATCH] optional open links in new tab --- src/Components/AppShell/SideBar.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Components/AppShell/SideBar.tsx b/src/Components/AppShell/SideBar.tsx index fe1f3662..ff52d50a 100644 --- a/src/Components/AppShell/SideBar.tsx +++ b/src/Components/AppShell/SideBar.tsx @@ -14,6 +14,7 @@ type route = { icon: JSX.Element; name: string; submenu?: route; + blank?: boolean } @@ -102,6 +103,7 @@ export function SideBar({ routes, bottomRoutes }: { routes: route[], bottomRoute : ( `${isActive ? 'tw-font-semibold tw-bg-base-200 !tw-rounded-none' : 'tw-font-normal !tw-rounded-none'}`} onClick={() => { if (screen.width < 640 && !slim) instance.toggle();