Explorar o código

InfoPopover: Fixes transclude undefined error (#17063)

Torkel Ödegaard %!s(int64=6) %!d(string=hai) anos
pai
achega
6c7224c74d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      public/app/core/components/info_popover.ts

+ 1 - 1
public/app/core/components/info_popover.ts

@@ -8,7 +8,7 @@ export function infoPopover() {
     restrict: 'E',
     template: '<i class="fa fa-info-circle"></i>',
     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';