Change 'Disenroll' text to be consistent with menu option 'Unenroll'. (#26816)

This commit is contained in:
Justin Kambic 2018-12-07 14:27:20 -05:00 committed by GitHub
parent 9c83345f7a
commit 2b3f41de3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View file

@ -178,7 +178,7 @@ export const BeatsTableType: TableType = {
actions: [
{
name: i18n.translate('xpack.beatsManagement.beatsTable.disenrollSelectedLabel', {
defaultMessage: 'Disenroll Selected',
defaultMessage: 'Unenroll Selected',
}),
action: 'delete',
danger: true,

View file

@ -190,7 +190,7 @@ class BeatsPageUi extends React.PureComponent<BeatsPageProps, BeatsPageState> {
await this.props.libs.beats.update(beat.id, { active: false });
}
this.notifyBeatDisenrolled(selected);
this.notifyBeatUnenrolled(selected);
// because the compile code above has a very minor race condition, we wait,
// the max race condition time is really 10ms but doing 100 to be safe
@ -229,7 +229,7 @@ class BeatsPageUi extends React.PureComponent<BeatsPageProps, BeatsPageState> {
}
};
private notifyBeatDisenrolled = async (beats: CMPopulatedBeat[]) => {
private notifyBeatUnenrolled = async (beats: CMPopulatedBeat[]) => {
const { intl } = this.props;
let title;
let text;
@ -237,7 +237,7 @@ class BeatsPageUi extends React.PureComponent<BeatsPageProps, BeatsPageState> {
title = intl.formatMessage(
{
id: 'xpack.beatsManagement.beats.beatDisenrolledNotificationTitle',
defaultMessage: '{firstBeatNameOrId} disenrolled',
defaultMessage: '{firstBeatNameOrId} unenrolled',
},
{
firstBeatNameOrId: `"${beats[0].name || beats[0].id}"`,
@ -246,7 +246,7 @@ class BeatsPageUi extends React.PureComponent<BeatsPageProps, BeatsPageState> {
text = intl.formatMessage(
{
id: 'xpack.beatsManagement.beats.beatDisenrolledNotificationDescription',
defaultMessage: 'Beat with ID {firstBeatId} was disenrolled.',
defaultMessage: 'Beat with ID {firstBeatId} was unenrolled.',
},
{
firstBeatId: `"${beats[0].id}"`,
@ -256,7 +256,7 @@ class BeatsPageUi extends React.PureComponent<BeatsPageProps, BeatsPageState> {
title = intl.formatMessage(
{
id: 'xpack.beatsManagement.beats.disenrolledBeatsNotificationTitle',
defaultMessage: '{beatsLength} beats disenrolled',
defaultMessage: '{beatsLength} beats unenrolled',
},
{
beatsLength: beats.length,
@ -267,7 +267,7 @@ class BeatsPageUi extends React.PureComponent<BeatsPageProps, BeatsPageState> {
this.setState({
notifications: this.state.notifications.concat({
color: 'warning',
id: `disenroll_${new Date()}`,
id: `unenroll_${new Date()}`,
title,
text,
}),