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

This commit is contained in:
Ashokaditya 2021-11-03 22:01:10 +01:00 committed by GitHub
parent bdffe0adb9
commit 038e77680d
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 {