sfirke commented on issue #20961: URL: https://github.com/apache/superset/issues/20961#issuecomment-1204322700
I was able to reproduce this with the example data set `flights`. Here's the dashboard with the filters in errored state:  When I click View Query I see the persisted filters on Query B did not release when I un-checked them: **Query A** ``` SELECT "DAY" AS "DAY", "STATE" AS "STATE", COUNT(*) AS count FROM public.flights WHERE "STATE" IN ('CA', 'IL', 'NY') GROUP BY "DAY", "STATE" ORDER BY count DESC LIMIT 10000; ``` **Query B** ``` SELECT "DAY" AS "DAY", COUNT(*) AS count FROM public.flights WHERE "STATE" IN ('CA', 'IL', 'NY') AND "AIRLINE" IN ('EV') AND "COUNTRY_DEST" IN ('USA') GROUP BY "DAY" ORDER BY count DESC LIMIT 10000; ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
