Skip to content

Commit

Permalink
fix(cross-filter): fix scheme py (apache#13665)
Browse files Browse the repository at this point in the history
* fix: fix scehme py

* fix: fix scheme py
  • Loading branch information
simcha90 authored Mar 17, 2021
1 parent 036fc39 commit c0fc1ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions superset/dashboards/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ def validate_json_metadata(value: Union[bytes, bytearray, str]) -> None:
class DashboardJSONMetadataSchema(Schema):
# native_filter_configuration is for dashboard-native filters
native_filter_configuration = fields.List(fields.Dict(), allow_none=True)
# chart_configuration is for dashboard-native filters
chart_configuration = fields.List(fields.Dict(), allow_none=True)
# chart_configuration for now keeps data about cross-filter scoping for charts
chart_configuration = fields.Dict()
# filter_sets_configuration is for dashboard-native filters
filter_sets_configuration = fields.List(fields.Dict(), allow_none=True)
timed_refresh_immune_slices = fields.List(fields.Integer())
Expand Down

0 comments on commit c0fc1ae

Please sign in to comment.