diff --git a/public/app/core/components/sidemenu/DropDownChild.tsx b/public/app/core/components/sidemenu/DropDownChild.tsx index 9935f6efadd..4f0f2f903cf 100644 --- a/public/app/core/components/sidemenu/DropDownChild.tsx +++ b/public/app/core/components/sidemenu/DropDownChild.tsx @@ -26,15 +26,16 @@ const DropDownChild = ({ isDivider = false, icon, onClick, target, text, url }: let anchor = {linkContent}; if (url) { - anchor = url.startsWith('/') ? ( - - {linkContent} - - ) : ( - - {linkContent} - - ); + anchor = + !target && url.startsWith('/') ? ( + + {linkContent} + + ) : ( + + {linkContent} + + ); } return isDivider ?
  • :
  • {anchor}
  • ;