diff --git a/public/app/core/navigation/patch/interceptLinkClicks.ts b/public/app/core/navigation/patch/interceptLinkClicks.ts index a7a3e6db78f..fb789bb44bf 100644 --- a/public/app/core/navigation/patch/interceptLinkClicks.ts +++ b/public/app/core/navigation/patch/interceptLinkClicks.ts @@ -24,7 +24,7 @@ export function interceptLinkClicks(e: MouseEvent) { // That is they where seen as being absolute from app root if (href[0] !== '/') { // if still contains protocol it's an absolute link to another domain or web application - if (href.indexOf('://')) { + if (href.indexOf('://') > 0) { window.location.href = href; return; } else {