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

@@ -181,6 +181,13 @@ export interface FieldState {
* This is only related to the cached displayName property above.
*/
multipleFrames?: boolean;
/**
* Boolean value is true if a null filling threshold has been applied
* against the frame of the field. This is used to avoid cases in which
* this would applied more than one time.
*/
nullThresholdApplied?: boolean;
}
/** @public */