chore: Add DRILL_BY feature flag (#23430)
This commit is contained in:
parent
2fa8f989ae
commit
7ef06b0a60
|
|
@ -38,6 +38,7 @@ export enum FeatureFlag {
|
|||
DISABLE_LEGACY_DATASOURCE_EDITOR = 'DISABLE_LEGACY_DATASOURCE_EDITOR',
|
||||
DISPLAY_MARKDOWN_HTML = 'DISPLAY_MARKDOWN_HTML',
|
||||
DRILL_TO_DETAIL = 'DRILL_TO_DETAIL',
|
||||
DRILL_BY = 'DRILL_BY',
|
||||
DYNAMIC_PLUGINS = 'DYNAMIC_PLUGINS',
|
||||
EMBEDDABLE_CHARTS = 'EMBEDDABLE_CHARTS',
|
||||
EMBEDDED_SUPERSET = 'EMBEDDED_SUPERSET',
|
||||
|
|
|
|||
|
|
@ -478,6 +478,7 @@ DEFAULT_FEATURE_FLAGS: Dict[str, bool] = {
|
|||
# Enable sharing charts with embedding
|
||||
"EMBEDDABLE_CHARTS": True,
|
||||
"DRILL_TO_DETAIL": False,
|
||||
"DRILL_BY": False,
|
||||
"DATAPANEL_CLOSED_BY_DEFAULT": False,
|
||||
"HORIZONTAL_FILTER_BAR": False,
|
||||
# The feature is off by default, and currently only supported in Presto and Postgres,
|
||||
|
|
|
|||
Loading…
Reference in New Issue