Table panel: Migrate time series aggregation Current to Last not null, instead of last (#44113)

This commit is contained in:
Dominik Prokop 2022-01-18 00:34:56 -08:00 committed by GitHub
parent 4e1c7e868e
commit 2561864767
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -191,7 +191,7 @@ Object {
"reducers": Array [
"mean",
"max",
"last",
"lastNotNull",
],
},
},

View File

@ -37,7 +37,7 @@ const columnsMap = {
min: 'min',
max: 'max',
total: 'sum',
current: 'last',
current: 'lastNotNull',
count: 'count',
};