mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Show correct completed response message on activity log (#117407)
This commit is contained in:
parent
bdffe0adb9
commit
038e77680d
1 changed files with 2 additions and 2 deletions
|
@ -129,9 +129,9 @@ const useLogEntryUIProps = (
|
|||
if (isIsolateAction) {
|
||||
if (isCompleted) {
|
||||
if (isSuccessful) {
|
||||
return i18.ACTIVITY_LOG.LogEntry.response.unisolationCompletedAndSuccessful;
|
||||
return i18.ACTIVITY_LOG.LogEntry.response.isolationCompletedAndSuccessful;
|
||||
}
|
||||
return i18.ACTIVITY_LOG.LogEntry.response.unisolationCompletedAndUnsuccessful;
|
||||
return i18.ACTIVITY_LOG.LogEntry.response.isolationCompletedAndUnsuccessful;
|
||||
} else if (isSuccessful) {
|
||||
return i18.ACTIVITY_LOG.LogEntry.response.isolationSuccessful;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue