Skip to content

Commit

Permalink
Fix copy after review
Browse files Browse the repository at this point in the history
  • Loading branch information
nchaulet committed Apr 12, 2020
1 parent c365fd8 commit 0e41dbc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,17 @@ export const CreateDatasourcePageLayout: React.FunctionComponent<{
<EuiFlexItem>
<EuiSpacer size="s" />
<EuiText color="subdued" size="s">
<FormattedMessage
id="xpack.ingestManager.createDatasource.pageDescription"
defaultMessage="Follow the instructions below to add a data source to the selected agent configuration."
/>
{from === 'config' ? (
<FormattedMessage
id="xpack.ingestManager.createDatasource.pageDescriptionfromConfig"
defaultMessage="Follow the instructions below to add an integration to this agent configuration."
/>
) : (
<FormattedMessage
id="xpack.ingestManager.createDatasource.pageDescriptionfromPackage"
defaultMessage="Follow the instructions below to add this integration to an agent configuration."
/>
)}
</EuiText>
</EuiFlexItem>
</EuiFlexGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export const CreateDatasourcePage: React.FunctionComponent = () => {
from === 'package'
? {
title: i18n.translate('xpack.ingestManager.createDatasource.stepSelectAgentConfigTitle', {
defaultMessage: 'Select an Agent configuration',
defaultMessage: 'Select an agent configuration',
}),
children: (
<StepSelectConfig
Expand Down

0 comments on commit 0e41dbc

Please sign in to comment.