Explorar o código

scrollbar: fix 'legendScrollbar.destroy is not a function' error

Alexander Zobnin %!s(int64=7) %!d(string=hai) anos
pai
achega
6b598f34cd
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      public/app/plugins/panel/graph/legend.ts

+ 1 - 1
public/app/plugins/panel/graph/legend.ts

@@ -19,7 +19,7 @@ module.directive('graphLegend', function(popoverSrv, $timeout) {
 
       scope.$on('$destroy', function() {
         if (legendScrollbar) {
-          legendScrollbar.destroy();
+          legendScrollbar.dispose();
         }
       });