fix(explore): Prevent shared controls from checking feature flags outside React render (#21315)

This commit is contained in:
Cody Leff
2022-09-14 14:41:47 -04:00
committed by GitHub
parent 59ca7861c0
commit 2285ebe72e
21 changed files with 285 additions and 435 deletions

View File

@@ -345,7 +345,7 @@ const config: ControlPanelConfig = {
controlState,
) || {};
timeserieslimitProps.value = state.controls?.limit?.value
? controlState.value
? controlState?.value
: [];
return timeserieslimitProps;
},