Skip to content
Merged
Changes from all 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 @@ -342,8 +342,9 @@ export const FollowerIndexForm = injectI18n(
);

const indexNameLabel = i18n.translate(
'xpack.crossClusterReplication.followerIndexForm.sectionFollowerIndexNameTitle', {
defaultMessage: 'Name'
'xpack.crossClusterReplication.followerIndexForm.sectionFollowerIndexNameTitle',
{
defaultMessage: 'Follower index'
}
);

Expand Down Expand Up @@ -449,9 +450,12 @@ export const FollowerIndexForm = injectI18n(
</EuiTitle>
)}
label={leaderIndexLabel}
description={i18n.translate('xpack.crossClusterReplication.followerIndexForm.sectionLeaderIndexDescription', {
defaultMessage: 'The leader index you want to replicate from the remote cluster.'
})}
description={i18n.translate(
'xpack.crossClusterReplication.followerIndexForm.sectionLeaderIndexDescription',
{
defaultMessage: 'The leader index you want to replicate from the remote cluster.'
}
)}
helpText={(
<FormattedMessage
id="xpack.crossClusterReplication.followerIndexForm.indexNameHelpLabel"
Expand Down Expand Up @@ -637,9 +641,9 @@ export const FollowerIndexForm = injectI18n(
return (
<Fragment>
<EuiForm>
{renderFollowerIndexName()}
{renderRemoteClusterField()}
{renderLeaderIndex()}
{renderFollowerIndexName()}
<EuiSpacer size="s" />
{renderAdvancedSettings()}
</EuiForm>
Expand Down