Skip to content

Commit

Permalink
[ML] Fix advanced wizard datafeed form labels (#59413)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgowdyelastic authored Mar 5, 2020
1 parent ce9e887 commit 4371b1c
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 4371b1c

Please sign in to comment.