fix(dashboard): Native filter on the dashboard with multiple tabs is displayed as out of scope #20693
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
SUMMARY
There's a race condition when hydrating the dashboard that's causing the native filters to be treated as out of scope.
The original issue was found and fixed by #17084 by ensuring the hydration happened before the active tabs were set.
However, this #19983 caused a regression by passing to the hydration function an empty array for the active tabs, causing it to override what's already in the state. The state could already have the tabs set cause the function that calls the hydration is under an async callback, un thus could be slower.
By passing undefined as the active tabs (the normal scenario), the issue is solved.
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
Before:
old.mov
After:
new.mov
TESTING INSTRUCTIONS
Note that the issue happens on revisit, the first time around it works.
ADDITIONAL INFORMATION