From a18c68f7ac0b2cb6a46552328e9c6fc28c223970 Mon Sep 17 00:00:00 2001 From: claracruz Date: Wed, 13 Sep 2023 13:33:51 +0100 Subject: [PATCH] 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 --- x-pack/plugins/cloud/common/constants.ts | 2 +- x-pack/plugins/cloud/public/plugin.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/cloud/common/constants.ts b/x-pack/plugins/cloud/common/constants.ts index fc37906299d14..f2009223f8ac1 100644 --- a/x-pack/plugins/cloud/common/constants.ts +++ b/x-pack/plugins/cloud/common/constants.ts @@ -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. diff --git a/x-pack/plugins/cloud/public/plugin.test.ts b/x-pack/plugins/cloud/public/plugin.test.ts index f7cf7cb527580..9dd0ec9664ba5 100644 --- a/x-pack/plugins/cloud/public/plugin.test.ts +++ b/x-pack/plugins/cloud/public/plugin.test.ts @@ -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/", ] `); });