Skip to content

Commit

Permalink
Update support link in help menu (#166272)
Browse files Browse the repository at this point in the history
Fixes: https://github.com/elastic/cloud/issues/117950

When the user clicks on 'Support' in help menu, they should be taken to
directly to https://support.elastic.co/home
  • Loading branch information
claracruz authored Sep 13, 2023
1 parent 7aa3074 commit a18c68f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion x-pack/plugins/cloud/common/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* 2.0.
*/

export const ELASTIC_SUPPORT_LINK = 'https://cloud.elastic.co/support';
export const ELASTIC_SUPPORT_LINK = 'https://support.elastic.co/';

/**
* This is the page for managing your snapshots on Cloud.
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/cloud/public/plugin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ describe('Cloud Plugin', () => {
expect(coreStart.chrome.setHelpSupportUrl).toHaveBeenCalledTimes(1);
expect(coreStart.chrome.setHelpSupportUrl.mock.calls[0]).toMatchInlineSnapshot(`
Array [
"https://cloud.elastic.co/support",
"https://support.elastic.co/",
]
`);
});
Expand Down

0 comments on commit a18c68f

Please sign in to comment.