diff --git a/public/app/features/panel/panel_menu.js b/public/app/features/panel/panel_menu.js
index 3524a0c019f..a6a3fa9ae78 100644
--- a/public/app/features/panel/panel_menu.js
+++ b/public/app/features/panel/panel_menu.js
@@ -14,7 +14,7 @@ function (angular, $, _, Tether) {
'' +
'' +
'{{ctrl.panel.title | interpolateTemplateVars:this}}' +
- '{{ctrl.panel.helpText}}' +
+ '{{ctrl.panel.description}}' +
'' +
' {{ctrl.timeInfo}}' +
'';
@@ -104,9 +104,9 @@ function (angular, $, _, Tether) {
$panelLinksBtn.css({display: showIcon ? 'inline' : 'none'});
});
- $scope.$watch('ctrl.panel.helpText', function(helpText) {
- helpText = sanitizeString(helpText);
- var showIcon = (helpText ? helpText.length > 0 : false) && ctrl.panel.title !== '';
+ $scope.$watch('ctrl.panel.description', function(description) {
+ description = sanitizeString(description);
+ var showIcon = (description ? description.length > 0 : false) && ctrl.panel.title !== '';
$panelHelpDrop.css({display: showIcon ? 'inline' : 'none'});
});
diff --git a/public/app/features/panellinks/module.html b/public/app/features/panellinks/module.html
index 0cc977f7a9b..96d9b785a1b 100644
--- a/public/app/features/panellinks/module.html
+++ b/public/app/features/panellinks/module.html
@@ -3,60 +3,44 @@
Drilldown / detail linkThese links appear in the dropdown menu in the panel menu.
-