Skip to content

Commit

Permalink
[ML] Clarify delete index & ip with names in modal
Browse files Browse the repository at this point in the history
[ML] Clarify delete index & ip with names in modal
  • Loading branch information
qn895 committed May 21, 2020
1 parent 01b4956 commit e5e618f
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,8 @@ export const DeleteAction: FC<DeleteActionProps> = ({ item }) => {
label={i18n.translate(
'xpack.ml.dataframe.analyticsList.deleteDestinationIndexTitle',
{
defaultMessage: 'Delete destination index',
defaultMessage: 'Delete destination index {indexName}',
values: { indexName },
}
)}
checked={deleteTargetIndex}
Expand All @@ -216,9 +217,10 @@ export const DeleteAction: FC<DeleteActionProps> = ({ item }) => {
{userCanDeleteIndex && indexPatternExists && (
<EuiSwitch
label={i18n.translate(
'xpack.ml.dataframe.analyticsList.deleteTargetIndexTitle',
'xpack.ml.dataframe.analyticsList.deleteTargetIndexPatternTitle',
{
defaultMessage: 'Delete index pattern',
defaultMessage: 'Delete index pattern {indexPattern}',
values: { indexPattern: indexName },
}
)}
checked={deleteIndexPattern}
Expand Down

0 comments on commit e5e618f

Please sign in to comment.