Skip to content

Commit

Permalink
Merge debb209 into b69a86c
Browse files Browse the repository at this point in the history
  • Loading branch information
ajduberstein committed Sep 17, 2019
2 parents b69a86c + debb209 commit 544e74e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/aggregation-layers/src/utils/cpu-aggregator.js
Expand Up @@ -133,7 +133,6 @@ export default class CPUAggregator {

this._getCellSize = opts.getCellSize || defaultGetCellSize;
this._getAggregator = opts.getAggregator;

this._addDimension(opts.dimensions || defaultDimensions);
}

Expand Down Expand Up @@ -246,10 +245,11 @@ export default class CPUAggregator {
});
}

getDimensionUpdaters({key, accessor, getBins, getDomain, getScaleFunc, nullValue}) {
getDimensionUpdaters({key, accessor, pickingInfo, getBins, getDomain, getScaleFunc, nullValue}) {
return {
key,
accessor,
pickingInfo,
getBins: Object.assign({updater: this.getDimensionSortedBins}, getBins),
getDomain: Object.assign({updater: this.getDimensionValueDomain}, getDomain),
getScaleFunc: Object.assign({updater: this.getDimensionScale}, getScaleFunc),
Expand Down

0 comments on commit 544e74e

Please sign in to comment.