Skip to content

Commit 50e6387

Browse files
[TSVB] [Table tab] Fix "Math" aggregation (#100765) (#100896)
Co-authored-by: Alexey Antonov <alexwizp@gmail.com>
1 parent 64528b1 commit 50e6387

File tree

1 file changed

+2
-2
lines changed
  • src/plugins/vis_type_timeseries/server/lib/vis_data/response_processors/table

1 file changed

+2
-2
lines changed

src/plugins/vis_type_timeseries/server/lib/vis_data/response_processors/table/math.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88

99
import { mathAgg } from '../series/math';
1010

11-
export function math(bucket, panel, series) {
11+
export function math(bucket, panel, series, meta, extractFields) {
1212
return (next) => (results) => {
13-
const mathFn = mathAgg({ aggregations: bucket }, panel, series);
13+
const mathFn = mathAgg({ aggregations: bucket }, panel, series, meta, extractFields);
1414
return mathFn(next)(results);
1515
};
1616
}

0 commit comments

Comments
 (0)