Просмотр исходного кода

Merge pull request #279 from rashidkpc/master

Closes #278 Removed table documents reception from table panel
Rashid Khan 12 лет назад
Родитель
Сommit
5bb5be1f2d
1 измененных файлов с 0 добавлено и 4 удалено
  1. 0 4
      panels/table/module.js

+ 0 - 4
panels/table/module.js

@@ -69,10 +69,6 @@ angular.module('kibana.table', [])
     eventBus.register($scope,'selected_fields', function(event, fields) {
       $scope.panel.fields = _.clone(fields);
     });
-    eventBus.register($scope,'table_documents', function(event, docs) {
-      querySrv.list[querySrv.ids[0]].query = docs.query;
-      $scope.data = docs.docs;
-    });
   };
 
   $scope.set_sort = function(field) {