ktmud commented on code in PR #20743: URL: https://github.com/apache/superset/pull/20743#discussion_r923611803
########## superset-frontend/src/explore/ExplorePage.tsx: ########## @@ -57,6 +67,58 @@ const fetchExploreData = async (exploreUrlParams: URLSearchParams) => { } }; +const getDashboardContextFormData = () => { + const dashboardTabId = getUrlParam(URL_PARAMS.dashboardTabId); + const sliceId = getUrlParam(URL_PARAMS.sliceId) || 0; + let dashboardContextWithFilters = {}; + if (dashboardTabId) { + const { + labelColors, + sharedLabelColors, + colorScheme, + chartConfiguration, + nativeFilters, Review Comment: Is `nativeFilters` the full metadata of all native filters? Do we really need to carry it over to the Explore page? I don't see it being used here. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For additional commands, e-mail: notifications-h...@superset.apache.org