Skip to content

Commit fcb590e

Browse files
authored
Fix link to upgrade assistant (#82138)
This broke when stack management changed their URLs.
1 parent 877ad5a commit fcb590e

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

x-pack/plugins/apm/public/setHelpExtension.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
* you may not use this file except in compliance with the Elastic License.
55
*/
66

7-
import url from 'url';
87
import { i18n } from '@kbn/i18n';
98
import { CoreStart } from 'kibana/public';
109

@@ -20,10 +19,7 @@ export function setHelpExtension({ chrome, http }: CoreStart) {
2019
},
2120
{
2221
linkType: 'custom',
23-
href: url.format({
24-
pathname: http.basePath.prepend('/app/kibana'),
25-
hash: '/management/stack/upgrade_assistant',
26-
}),
22+
href: http.basePath.prepend('/app/management/stack/upgrade_assistant'),
2723
content: i18n.translate('xpack.apm.helpMenu.upgradeAssistantLink', {
2824
defaultMessage: 'Upgrade assistant',
2925
}),

0 commit comments

Comments
 (0)