diff --git a/client/src/common/components/Sidebar/components/SidebarContent/components/PowerItem/PowerItem.jsx b/client/src/common/components/Sidebar/components/SidebarContent/components/PowerItem/PowerItem.jsx index 6550f4b..63bcfb6 100644 --- a/client/src/common/components/Sidebar/components/SidebarContent/components/PowerItem/PowerItem.jsx +++ b/client/src/common/components/Sidebar/components/SidebarContent/components/PowerItem/PowerItem.jsx @@ -6,8 +6,16 @@ export const PowerItem = ({icon, name, path}) => { const location = useLocation(); const navigate = useNavigate(); + const mouseDown = (event) => { + if (event.button === 1) { + event.preventDefault(); + window.open(window.location.origin + path, "_blank"); + } + } + return ( -
navigate(path)}> +
navigate(path)}>

{name}