From 3ff1b03349c8f668268fbfb72bd68f511275f6b1 Mon Sep 17 00:00:00 2001 From: CJ Cenizal Date: Fri, 1 Feb 2019 14:56:35 -0800 Subject: [PATCH] Re-order follower index form sections: remote cluster, leader index, follower index. --- .../follower_index_form/follower_index_form.js | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/x-pack/plugins/cross_cluster_replication/public/app/components/follower_index_form/follower_index_form.js b/x-pack/plugins/cross_cluster_replication/public/app/components/follower_index_form/follower_index_form.js index fbc53e13128f8..9cd906889b4e8 100644 --- a/x-pack/plugins/cross_cluster_replication/public/app/components/follower_index_form/follower_index_form.js +++ b/x-pack/plugins/cross_cluster_replication/public/app/components/follower_index_form/follower_index_form.js @@ -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' } ); @@ -449,9 +450,12 @@ export const FollowerIndexForm = injectI18n( )} 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={( - {renderFollowerIndexName()} {renderRemoteClusterField()} {renderLeaderIndex()} + {renderFollowerIndexName()} {renderAdvancedSettings()}