fix(listview): update listview feature flag (#13906)

* update listview feature flag

* remove check
This commit is contained in:
Phillip Kelley-Dotson 2021-04-12 15:13:16 -07:00 committed by GitHub
parent 5952d78121
commit 89f5785666
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -373,12 +373,6 @@ DEFAULT_FEATURE_FLAGS: Dict[str, bool] = {
"ALERTS_ATTACH_REPORTS": True,
}
# Set the default view to card/grid view if thumbnail support is enabled.
# Setting LISTVIEWS_DEFAULT_CARD_VIEW to False will force the default view to
# always be the table layout
if DEFAULT_FEATURE_FLAGS["THUMBNAILS"]:
DEFAULT_FEATURE_FLAGS["LISTVIEWS_DEFAULT_CARD_VIEW"] = True
# Feature flags may also be set via 'SUPERSET_FEATURE_' prefixed environment vars.
DEFAULT_FEATURE_FLAGS.update(
{