A clear and concise description of what the bug is.

lastest master
Make sure to follow these steps before submitting your issue - thank you!
cc @junlincc @suddjian
Issue-Label Bot is automatically applying the label #bug to this issue, with a confidence of 0.88. Please mark this comment with :thumbsup: or :thumbsdown: to give our bot feedback!
Links: app homepage, dashboard and code for this bot.
I'm seeing the same behavior. @suddjian please give a quick fix, thanks!

I am still working to find the source of this issue, but so far I have confirmed that it was not introduced with the new filter indicators. See recording:

The TRIGGER_QUERY action is firing correctly, but componentDidUpdate of Chart.jsx is not firing for some reason.
I haven't fully diagnosed this yet, but if you delete the shouldComponentUpdate in /src/dashboard/components/gridComponents/Chart.jsx (or just return true at the top, the problem is gone.
Nice! To narrow this down a little more, if you remove the this check from shouldComponentUpdate, it works
if (nextProps.mountedParent === null) {
return false;
}
It looks like the code responsible for focusing the filter when you click on it in the indicator is the source of the problem. dashboardState.mountedTab in redux is being set to null when it shouldn't be.
Most helpful comment
Nice! To narrow this down a little more, if you remove the this check from
shouldComponentUpdate, it worksIt looks like the code responsible for focusing the filter when you click on it in the indicator is the source of the problem.
dashboardState.mountedTabin redux is being set tonullwhen it shouldn't be.