From 6c7224c74db5dc2e929bc71a4066b3197b86ef03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Tue, 14 May 2019 15:28:09 +0200 Subject: [PATCH] InfoPopover: Fixes transclude undefined error (#17063) --- public/app/core/components/info_popover.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/core/components/info_popover.ts b/public/app/core/components/info_popover.ts index 9c5694188d6..70451465930 100644 --- a/public/app/core/components/info_popover.ts +++ b/public/app/core/components/info_popover.ts @@ -8,7 +8,7 @@ export function infoPopover() { restrict: 'E', template: '', transclude: true, - link: (scope: any, elem: any, attrs: any, transclude: any) => { + link: (scope: any, elem: any, attrs: any, ctrl: any, transclude: any) => { const offset = attrs.offset || '0 -10px'; const position = attrs.position || 'right middle'; let classes = 'drop-help drop-hide-out-of-bounds';