Update support link in help menu (#166272)

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
This commit is contained in:
claracruz 2023-09-13 13:33:51 +01:00 committed by GitHub
parent 7aa307476c
commit a18c68f7ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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.

View file

@ -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/",
]
`);
});