Skip to content

Commit

Permalink
[ML] Fix advanced wizard datafeed form labels (#59413) (#59431)
Browse files Browse the repository at this point in the history
Co-authored-by: Elastic Machine <[email protected]>
  • Loading branch information
jgowdyelastic and elasticmachine authored Mar 6, 2020
1 parent ce31335 commit 349b233
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const DatafeedDetails: FC = () => {
<Italic>{`${DEFAULT_QUERY_DELAY} (${defaultLabel})`}</Italic>
);
const frequency = jobCreator.frequency || (
<Italic>{`${defaultFrequency} (${defaultLabel})`}</Italic>
<Italic>{`${defaultFrequency}s (${defaultLabel})`}</Italic>
);
const scrollSize =
jobCreator.scrollSize !== null ? (
Expand Down Expand Up @@ -69,7 +69,7 @@ export const DatafeedDetails: FC = () => {
const queryTitle = i18n.translate(
'xpack.ml.newJob.wizard.summaryStep.datafeedDetails.query.title',
{
defaultMessage: 'Scroll size',
defaultMessage: 'Elasticsearch query',
}
);

Expand Down

0 comments on commit 349b233

Please sign in to comment.