fix(ag-grid): persist AG Grid column filters in explore permalinks (#38393)

(cherry picked from commit 9215eb5e45)
This commit is contained in:
amaannawab923
2026-03-11 01:56:24 +05:30
committed by Michael S. Molina
parent ec8177fe15
commit 224e9ea411
12 changed files with 198 additions and 15 deletions

View File

@@ -41,6 +41,16 @@ class ExplorePermalinkStateSchema(Schema):
allow_none=True,
metadata={"description": "URL Parameters"},
)
chartState = fields.Dict( # noqa: N815
required=False,
allow_none=True,
metadata={
"description": (
"Chart-level state for stateful tables "
"(column filters, sorting, column order)"
)
},
)
class ExplorePermalinkSchema(Schema):