Skip to content

Commit

Permalink
Show correct completed response message on activity log (#117407) (#1…
Browse files Browse the repository at this point in the history
…17434)

Co-authored-by: Ashokaditya <[email protected]>
  • Loading branch information
kibanamachine and ashokaditya authored Nov 4, 2021
1 parent 6de08c5 commit 87555f8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 87555f8

Please sign in to comment.