From 4c7e52288d23769fb5d28daba7c235c82533e3ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Thu, 30 Jul 2015 12:04:52 +0200 Subject: [PATCH] fix(templating): another fix for panel links and repeat panels, #2410 --- public/app/features/panel/panelMenu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/panel/panelMenu.js b/public/app/features/panel/panelMenu.js index c7711d99925..1e65214da37 100644 --- a/public/app/features/panel/panelMenu.js +++ b/public/app/features/panel/panelMenu.js @@ -56,7 +56,7 @@ function (angular, $, _) { if ($scope.panel.links) { _.each($scope.panel.links, function(link) { - var info = linkSrv.getPanelLinkAnchorInfo(link); + var info = linkSrv.getPanelLinkAnchorInfo(link, $scope.panel.scopedVars); menu.push({text: info.title, href: info.href, target: info.target }); }); }