We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6ba12b commit be64247Copy full SHA for be64247
x-pack/plugins/security_solution/public/resolver/view/map.tsx
@@ -79,6 +79,9 @@ export const ResolverMap = React.memo(function ({
79
});
80
81
useEffect(() => {
82
+ // When you refresh the page after selecting a process in the table view (not the timeline view)
83
+ // The old crumbId still exists in the query string even though a resolver is no longer visible
84
+ // This just makes sure the activeDescendant and crumbId are in sync on load for that view as well as the timeline
85
if (activeDescendantId && crumbId !== activeDescendantId) {
86
pushToQueryParams({ crumbId: activeDescendantId, crumbEvent: '' });
87
}
0 commit comments