diff --git a/public/app/features/dashlinks/module.html b/public/app/features/dashlinks/module.html index 951d530ae8c..369013c86d5 100644 --- a/public/app/features/dashlinks/module.html +++ b/public/app/features/dashlinks/module.html @@ -1,4 +1,4 @@ - + diff --git a/public/app/features/dashlinks/module.js b/public/app/features/dashlinks/module.js index 78d7265c387..4423498a2bf 100644 --- a/public/app/features/dashlinks/module.js +++ b/public/app/features/dashlinks/module.js @@ -32,6 +32,10 @@ function (angular, _) { var linkInfo = linkSrv.getPanelLinkAnchorInfo(scope.link); elem.find("span").text(linkInfo.title); elem.find("a").attr("href", linkInfo.href); + + if (scope.link.type === 'dashboard') { + scope.tooltip = 'Go to dashboard'; + } } update(); diff --git a/public/app/partials/submenu.html b/public/app/partials/submenu.html index 58d8fffe9d5..22e9b043d5f 100644 --- a/public/app/partials/submenu.html +++ b/public/app/partials/submenu.html @@ -2,13 +2,13 @@