Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Enterprise Search] Minor update to Elastic Cloud instructions copy per feedback #84584

Merged
merged 3 commits into from
Nov 30, 2020
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ export const CloudSetupInstructions: React.FC<Props> = ({ productName, cloudDepl
steps={[
{
title: i18n.translate('xpack.enterpriseSearch.setupGuide.cloud.step1.title', {
defaultMessage: 'Edit your Elastic Cloud deployment’s configuration',
defaultMessage: 'Edit your deployment’s configuration',
}),
children: (
<EuiText>
<p>
<FormattedMessage
id="xpack.enterpriseSearch.setupGuide.cloud.step1.instruction1"
defaultMessage="{visitCloudLink} and select your deployment. Within your deployment, select “Edit” from the sidebar to manage your deployment’s configuration."
defaultMessage="Visit the Elastic Cloud console to {editDeploymentLink}."
cee-chen marked this conversation as resolved.
Show resolved Hide resolved
values={{
visitCloudLink: cloudDeploymentLink ? (
<EuiLink href={cloudDeploymentLink} target="_blank">
Visit the Elastic Cloud console
editDeploymentLink: cloudDeploymentLink ? (
<EuiLink href={cloudDeploymentLink + '/edit'} target="_blank">
edit your deployment
</EuiLink>
) : (
'Visit the Elastic Cloud console'
Expand Down