Show correct completed response message on activity log (#117407) (#117433)

Co-authored-by: Ashokaditya <am.struktr@gmail.com>
This commit is contained in:
Kibana Machine 2021-11-03 19:16:52 -04:00 committed by GitHub
parent 36242b2348
commit 9074bf3882
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 {