diff --git a/src/components/Layout/SideBar/Meny.tsx b/src/components/Layout/SideBar/Meny.tsx index da6b577..3c69574 100644 --- a/src/components/Layout/SideBar/Meny.tsx +++ b/src/components/Layout/SideBar/Meny.tsx @@ -31,7 +31,8 @@ export function Menu() { {getVisibleText('navigation.help')} diff --git a/src/components/Layout/SideBar/SidebarItem.tsx b/src/components/Layout/SideBar/SidebarItem.tsx index f784855..361997f 100644 --- a/src/components/Layout/SideBar/SidebarItem.tsx +++ b/src/components/Layout/SideBar/SidebarItem.tsx @@ -5,17 +5,20 @@ export interface SidebarItemProps { href: string; children: ReactNode; onClick?: React.MouseEventHandler; + target?: string, } export default function SidebarItem({ - path, - href, - children, - onClick, -}: SidebarItemProps) { + target, + path, + href, + children, + onClick + }: SidebarItemProps) { return (