fix(templating): another fix for panel links and repeat panels, #2410

This commit is contained in:
Torkel Ödegaard 2015-07-30 12:04:52 +02:00
parent e108fecdd6
commit 4c7e52288d

View File

@ -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 });
});
}