State Timeline: Fix Null Value Filling and Value Transformation (#50054)

This commit is contained in:
Kyle Cunningham
2022-06-03 16:22:57 -05:00
committed by GitHub
parent d2868a1ce7
commit 12ba2d6b8b
12 changed files with 303 additions and 45 deletions

View File

@@ -30,7 +30,7 @@ export class DataProcessor {
continue;
}
series = applyNullInsertThreshold(series, timeField.name);
series = applyNullInsertThreshold({ frame: series, refFieldName: timeField.name });
timeField = getTimeField(series).timeField!; // use updated length
for (let j = 0; j < series.fields.length; j++) {