mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[APM] Service maps error after clicking on multiple services (#119077)
This commit is contained in:
parent
dbf0e3d76b
commit
8d476b2018
1 changed files with 8 additions and 6 deletions
|
@ -57,12 +57,14 @@ export function BackendContents({
|
|||
);
|
||||
|
||||
const isLoading = status === FETCH_STATUS.LOADING;
|
||||
const detailsUrl = apmRouter.link('/backends/overview', {
|
||||
query: {
|
||||
...query,
|
||||
backendName,
|
||||
} as TypeOf<ApmRoutes, '/backends/overview'>['query'],
|
||||
});
|
||||
const detailsUrl = backendName
|
||||
? apmRouter.link('/backends/overview', {
|
||||
query: {
|
||||
...query,
|
||||
backendName,
|
||||
} as TypeOf<ApmRoutes, '/backends/overview'>['query'],
|
||||
})
|
||||
: undefined;
|
||||
|
||||
const trackEvent = useUiTracker();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue