Commit 1989a307 by Spencer Alger

Merge branch 'master' into geo_point_filter

parents b4a2391b 6c4f00ce
...@@ -392,9 +392,9 @@ angular.module('kibana.histogram', []) ...@@ -392,9 +392,9 @@ angular.module('kibana.histogram', [])
// so that the stacking happens in the proper order // so that the stacking happens in the proper order
var required_times = []; var required_times = [];
if (scope.panel.bars && stack) { if (scope.panel.bars && stack) {
required_times = Array.prototype.concat.apply([], _.map(scope.data, function (series) { required_times = _.uniq(Array.prototype.concat.apply([], _.map(scope.data, function (query) {
return series.time_series.getOrderedTimes(); return query.time_series.getOrderedTimes();
})); })).sort(), true);
} }
for (var i = 0; i < scope.data.length; i++) { for (var i = 0; i < scope.data.length; i++) {
...@@ -532,11 +532,11 @@ angular.module('kibana.histogram', []) ...@@ -532,11 +532,11 @@ angular.module('kibana.histogram', [])
* @return {array} An array of integer times. * @return {array} An array of integer times.
*/ */
this.ZeroFilled.prototype.getOrderedTimes = function (include) { this.ZeroFilled.prototype.getOrderedTimes = function (include) {
var times = _.map(_.keys(this._data), base10Int).sort(); var times = _.map(_.keys(this._data), base10Int);
if (_.isArray(include)) { if (_.isArray(include)) {
times = times.concat(include); times = times.concat(include);
} }
return times; return _.uniq(times.sort(), true);
}; };
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment