fixed visual inconsistencies in the stringquery panel when using multiple queries
This commit is contained in:
@@ -35,8 +35,14 @@ angular.module('kibana.stringquery', [])
|
||||
}
|
||||
}
|
||||
|
||||
$scope.set_multi = function(multi) {
|
||||
$scope.panel.query = multi ?
|
||||
new Array($scope.panel.query) : $scope.panel.query[0];
|
||||
}
|
||||
|
||||
$scope.remove_query = function(index) {
|
||||
$scope.panel.query.splice(index,1);
|
||||
console.log($scope.panel.query)
|
||||
}
|
||||
|
||||
$scope.init();
|
||||
|
||||
Reference in New Issue
Block a user