Skip to content

Commit a18ab73

Browse files
[ML] Fixes word wrap in Overview page sidebar on IE (#50668) (#52160)
1 parent 785807f commit a18ab73

File tree

1 file changed

+6
-8
lines changed
  • x-pack/legacy/plugins/ml/public/overview/components

1 file changed

+6
-8
lines changed

x-pack/legacy/plugins/ml/public/overview/components/sidebar.tsx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ function getCreateJobLink(createAnomalyDetectionJobDisabled: boolean) {
2525
return createAnomalyDetectionJobDisabled === true ? (
2626
<FormattedMessage
2727
id="xpack.ml.overview.gettingStartedSectionCreateJob"
28-
defaultMessage="creating a new job"
28+
defaultMessage="creating a new job"
2929
/>
3030
) : (
3131
<EuiLink href={createJobLink} target="blank">
3232
<FormattedMessage
3333
id="xpack.ml.overview.gettingStartedSectionCreateJob"
34-
defaultMessage="creating a new job"
34+
defaultMessage="creating a new job"
3535
/>
3636
</EuiLink>
3737
);
@@ -43,15 +43,13 @@ export const OverviewSideBar: FC<Props> = ({ createAnomalyDetectionJobDisabled }
4343
<h2>
4444
<FormattedMessage
4545
id="xpack.ml.overview.gettingStartedSectionTitle"
46-
defaultMessage="Getting Started"
46+
defaultMessage="Getting started"
4747
/>
4848
</h2>
4949
<p>
5050
<FormattedMessage
5151
id="xpack.ml.overview.gettingStartedSectionText"
52-
defaultMessage="Welcome to Machine Learning. Get started by reviewing our {docs} or {createJob}.
53-
For more information about machine learning in the Elastic stack please see {whatIsMachineLearning}.
54-
We recommend using {transforms} to create feature indices for analytics jobs."
52+
defaultMessage="Welcome to Machine Learning. Get started by reviewing our {docs} or {createJob}. For more information about machine learning in the Elastic stack please see {whatIsMachineLearning}. We recommend using {transforms} to create feature indices for analytics jobs."
5553
values={{
5654
docs: (
5755
<EuiLink href={docsLink} target="blank">
@@ -87,13 +85,13 @@ export const OverviewSideBar: FC<Props> = ({ createAnomalyDetectionJobDisabled }
8785
<p>
8886
<FormattedMessage
8987
id="xpack.ml.overview.feedbackSectionText"
90-
defaultMessage="If you have input or suggestions regarding your experience with Machine Learning please feel free to submit {feedbackLink}."
88+
defaultMessage="If you have input or suggestions regarding your experience with Machine Learning please feel free to submit {feedbackLink}."
9189
values={{
9290
feedbackLink: (
9391
<EuiLink href={feedbackLink} target="blank">
9492
<FormattedMessage
9593
id="xpack.ml.overview.feedbackSectionLink"
96-
defaultMessage="feedback online"
94+
defaultMessage="feedback online"
9795
/>
9896
</EuiLink>
9997
),

0 commit comments

Comments
 (0)