added field selector to table panel, deprecated field panel

This commit is contained in:
Rashid Khan
2013-07-27 15:28:49 -07:00
parent 30b8de9aac
commit e993654c19
15 changed files with 154 additions and 126 deletions
+2 -2
View File
@@ -55,7 +55,7 @@ angular.module('kibana.map', [])
if(dashboard.indices.length === 0) {
return;
}
$scope.panel.loading = true;
$scope.panelMeta.loading = true;
var request;
@@ -86,7 +86,7 @@ angular.module('kibana.map', [])
// Populate scope when we have results
results.then(function(results) {
$scope.panel.loading = false;
$scope.panelMeta.loading = false;
$scope.hits = results.hits.total;
$scope.data = {};
_.each(results.facets.map.terms, function(v) {